body {	
        background-image: url('../images/wallpaper.jpg');
	background-size: cover;
	background-position: center;
	text-align: left;
	font-size: 18px;
        transition: background 0.3s, color 0.3s;
	}
button {
  color: #2645a3;
  padding: 0.7em 1.7em;
  font-size: 18px;
  border-radius: 0.5em;
  background: #2645a3;
  cursor: pointer;
  border: 1px solid #2645a3;
  transition: all 0.3s;
  box-shadow: 6px 6px 12px #c5c5c5, -6px -6px 12px #ffffff;
}

button:hover {
  border: 1px solid white;
}

button:active {
  box-shadow: 4px 4px 12px #c5c5c5, -4px -4px 12px #ffffff;
}

p {
	font-family: Arial;
	color: black;
	text-align: left;
	}
h1 {
	width: 1000px;
	height: 100px;
	margin: 5px auto;
	background-color: #999999;
	font-family: Jazz LET;
	font-size: 50px;
	color: white;
	text-align: center;
	padding-top: 25px;
	}
h2 {
	width: 800px;
	height: 50px;
	padding-top: 10px;
	margin: 5px auto;
	font-family: Georgia, serif;
	font-size: 24px;
	text-align: center;
	}
a {color: blue;}
b {color: crimson;}

h3 {
	font-family: Georgia, serif;
	line-height: 10px; 
	font-size: 18px;*
        color: white
	}

.portrait {
	display: block;
	margin: 25px auto;
	}

.cadrage {
	margin: 0px 100px;
	padding: 5px;
	}

.contributions {
	margin: 5px 0px;
	padding: 0px 10px;
	border: 3px solid crimson;
	background-color: black;
	}
.liens {
	margin: 5px 0px;
	padding: 0px 10px;
	border: 3px solid darkslategray;
	background-color: black;
}
.gouda {
	font-family: Arial;
	color: blue;
	text-align: center;
}

.switch {
    display: flex;
    justify-content: flex-start; 
    align-items: center;
    margin: 20px auto; 
}

.switch input {
    display: none; 
}

.slider {
    width: 50px;
    height: 25px;
    background: #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 25px;
    cursor: pointer;
    position: relative;
    margin-right: 10px; 
}

.slider::before {
    content: "";
    width: 20px;
    height: 20px;
    background: white;
    position: absolute;
    left: 3px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    transition: 0.3s;
}

input:checked + .slider {
    background: black;
}

input:checked + .slider::before {
    left: 27px;
    background: yellow;
}





.settings-menu {
    display: none;
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 20px;
    border-radius: 8px;
    width: 300px;
    margin-top: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: absolute; 
    top: 50px; 
    right: 10px; 
}


.settings-button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
    position: fixed; 
    top: 10px;
    right: 10px;

.settings-button:hover {
    background-color: #45a049;
}


	