:root 
{
	--bleu-clair: #06cbff;
}
html
{
	height: 100%;
}
body
{
	height: auto;
}

nav
{
	width: 100%;
	height: min(7vw, 80px);
	display: flex;
	align-items: center;
	justify-content: center;
}
nav a
{
	text-decoration: none;
	color: black;
	text-align: center;
	transition: 0.2s;
}
nav a:hover
{
	text-decoration: underline;
	color: white;
	zoom: 1.1;
	transition: 0.2s;
}
#nav_icon
{
	width: auto;
	height: 100%;
	object-fit: contain;
}
#nav_titles
{
	width: 100%;
	height: 100%;
	background-color: var(--bleu-clair);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 15px;
	justify-content: space-between;
	padding: 0 10px;
	box-shadow: inset 0px 0px 3px 2px white;
}
#nav_titles > div
{
	width: 100%;
	display: flex;
	align-items: center;
	gap: 30px;
}
#nav_titles > div > a
{
	font-size: max(1vw, 30px);

}
#nav_titles > a
{
	font-size: min(2vw, 20px);
}


#home_page
{
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
}
#home_a_propos
{
	width: 100%;
	background-color: none;
	text-align: center;
}
#home_a_propos > h1
{
	font-size: min(6vw, 60px);
}
#home_page_photos
{
	margin-top: 20px;
	display: flex;
	justify-content: space-evenly;
	flex-wrap: wrap;
	gap: 10px;
}
#home_page_photos > img
{
	max-height: 20vh;
	border-radius: 20px;
	max-width: 100%;
	transition: transform 0.2s;
}
#home_page_photos > img:hover
{
	transform: scale(1.03);
}