a {
	color : white;
	--text-decoration : none;
}

a:hover {
	text-decoration : none;
	outline-style : none;
}


p {
	text-align : justify;
}
p a {
}


html {
	margin : 0;
	padding : 0;

}


body{
	margin : 0;
	padding : 0;

	top:0;
	left:0;


	-font-family: Segoe UI, Roboto, Helvetica, Arial, sans-serif;
	font-family : ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
	font-size: 1rem;
	line-height : 1.5vw;
	background-color: #0c2340; /* bleu nuit */
	-background-color : #f4f6f9;
	-background-color : #335;
	color: #eee;
}

/* Style général du header */
header {
	width: 100%;
	-background-color: #001431; /* bleu nuit */
	display: flex;
	justify-content: space-between;
	align-items: center;
	top: 0;
	left: 0;
	z-index: 1000;
}

header a {
	text-decoration : none;
}

	#title_container {
		display: flex;
		flex-direction: column;
		width : 100%;
		height : auto;

		margin-top : 1rem;
		margin-bottom : 1rem;
		margin-left : 5rem;
	}
		#title_container h1 {
			font-size : 3.5rem;
		}

		#title_container h2 {
			margin-top : -2vh;
			font-size : 1.5rem;
			font-style : italic;
			line-height : 1rem
		}


#menu_container {
	display: flex;
	gap: 5vw; /* Espacement entre les éléments */
}


.header_menu_element {
	transition: color 0.3s, transform 0.2s;
	font-size: 2rem;
}

.header_menu_element:hover {
	transform: scale(1.10);
	color : #F00;
}

.header_menu_element:last-of-type {
	margin-right : 3vw;
}

#menu_container a {
	text-decoration: none;
	font-weight: bold;
}


main {


}
