a {
	color : #444;
	--text-decoration : none;
}

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


p {
	text-align : justify;
}
p a {
	color : #444;
}


html {
	margin : 0;
	padding : 0;

}

body{

	margin : 0;
	padding : 0;

	top:0;
	left:0;

	background-color : #FFF;

	font-family: Segoe UI, Roboto, Helvetica, Arial, sans-serif;
	font-size: 1vw;
	line-height : 1.5vw;
	color: #444;
}

/* Style général du header */
header {
	width: 100%;
	background-color: #000; /* Bleu foncé élégant */
	color: white;
	display: flex;
	justify-content: space-between;
	align-items: center;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	top: 0;
	left: 0;
	z-index: 1000;
}

header a {
	color : #DDDDDD;
	text-decoration : none;
}

#title_container {
	display: flex;
	flex-direction: column;
	padding: 1vw 2vw ;
	gap : 1vw;
}

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

#title_container h1 {
	font-size: 2.3vw;
	margin: 0;
}

#title_container h2 {
	font-size: 1.3vw;
	font-weight: normal;
	margin: 0;
	opacity: 0.7;
}


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


.header_menu_element {
	padding: 1vw 1vw;
	-border-radius: 3px;
	transition: background-color 0.3s, transform 0.2s;
	font-size: 1.1vw;
}

.header_menu_element:hover {
	background-color: rgba(255, 255, 255, 0.3);
	transform: scale(1.05);
}


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

.disconnect_btn {
	background-color: #dc3545; /* rouge Bootstrap */
	color: white;
	font-weight: bold;
	border-radius: 5px;
	transition: background-color 0.3s ease;
	margin-right : 2vw;
}

.disconnect_btn:hover {
	background-color: #c82333; /* rouge plus sombre au hover */
}


main {


}
