html {
    font-size: 62.5%
}
body {
    margin: 0;
    padding: 0;
    font-size: 1.6rem;
    line-height: 1.6;
	background-color: rgb(226, 224, 224);
	font-family: Tahoma;
}
.logo {
	float: left;
	margin-left: 10px;
	border-radius: 50%;
	max-width: 100%;
    height: auto;

}

.topnav {
	overflow: hidden;
	background-color: #f5f5f5;
	display: block;
	text-align: center;
	padding: 5px 2px;	
	text-decoration: none;
	border: 3px;

}

.topnav .a1 {
	float: right;
	display: block;
	color: #111;
	text-align: center;
	padding: 15px 16px;
	text-decoration: none;
	border: 3px;
	position: relative;
}
	
/* Change color on hover */
.topnav .a1:hover {
	float: right;
	display: block;
	text-align: center;
	padding: 15px 16px;
	text-decoration: none;
	border: 3px;
	position: relative;
	border-bottom: 2px solid #000; 
}

/* Bouton 3 */

.dropdown-content {
	display: none;  
	position: absolute;
	background-color: #f9f9f9;
	min-width: 160px;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	z-index: 1;
}

.dropdown-content a {
	float: none;
	color: black;
	padding: 12px 16px;
	text-decoration: none;
	display: block;
	text-align: left;
	border-bottom: 0px;
}

.dropdown-content a:hover {
	color: #777;
}

.dropdown:hover .dropdown-content {
	display: block;
}

.dropdown {
	float: right;
	overflow: hidden;
}

.dropdown .button3 {
	display: block;
	color: #111;
	background-color: #f5f5f5;
	text-align: center;
	padding: 15px 16px;
	text-decoration: none;
	border: 3px;
	position: relative;
	font-family: Tahoma;	
	margin: 0;
    font-size: 1.6rem;
    line-height: 1.6;
	border-bottom: 2px solid transparent;
  }

.button3:hover {
	border-bottom: 2px solid #000;
}

/* SECTION SCROLL */
@import url("https://fonts.googleapis.com/css2?family=Asap&display=swap");

section {
	min-height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
}

section:nth-child(1) {
	color: #e0ffff;
}

section:nth-child(2) {
	color: #42455a;
	background: #e0ffff;
}

section:nth-child(3) {
	color: #e0ffff;
}

section:nth-child(4) {
	color: #42455a;
	background: #e0ffff;
}

section:nth-child(5) {
	color: #e0ffff;
}

section .container {
	margin: 100px;
}

section h1 {
	font-size: 3rem;
	margin: 20px;
}

section h2 {
	font-size: 40px;
	text-align: center;
	text-transform: uppercase;
}

section .text-container {
	display: flex;
}

section .text-container .text-box {
	margin: 20px;
	padding: 20px;
	background: #00c2cb;
}

section .text-container .text-box h3 {
	font-size: 30px;
	text-align: center;
	text-transform: uppercase;
	margin-bottom: 10px;
}
  
@media (max-width: 900px) {
	section h1 {
		font-size: 2rem;
		text-align: center;
	}
	section .text-container {
		flex-direction: column;
	}
}

.reveal {
	position: relative;
	transform: translateY(150px);
	opacity: 0;
	transition: 2s all ease;
}

.reveal.active {
	transform: translateY(0);
	opacity: 1;
}
@media (max-width: 900px) {
	section h1 {
		font-size: 2rem;
		text-align: center;
	}
	section .text-container {
		flex-direction: column;
	}
}

.btn2 {
	background-color: #111; /* Couleur de fond */
	color: white; /* Couleur du texte */
	padding: 12px 24px; /* Espacement intérieur (haut/bas gauche/droite) */
	border: none; /* Supprimer la bordure */
	border-radius: 4px; /* Arrondir les coins */
	font-size: 16px; /* Taille de police */
	cursor: pointer; /* Curseur de la souris en forme de main */
	box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2); /* Ombre portée */
	transition: background-color 0.3s ease; /* Transition lors du survol */
	margin-top: 75px;
}

.btn2:hover {
	background-color: #434343; /* Couleur de fond au survol */
}

.profile-pic {
	width: 150px;
	height: 150px;
	border-radius: 100%;
	overflow: hidden;
	margin-left: auto;
	margin-right: auto;
}

.profile-pic img {
	width: 100%;
	height: auto;
}

