@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');
body {
	background-color : #2c50c5;
	background-image : url("../image/fond noir.jpg");
	background-repeat: no-repeat;
	background-size: 100%

	
	
}
h1 {
	color : white;
	font-size : 3em;
	
	
	
	
}
.titre {
	
	
	
}

.titre h1 {
	font-size: 5em;
	font-family: 'Press Start 2P';
	justify-content: center;
	flex-direction: row;
	
}
.contenair {
    ;
    display: flex; 
	flex-direction : row-reverse;
	justify-content : space-between;
}

.article{
	;
	
}



*{
	margin: 0px;
	padding: 0px;
	font-family: 'Press Start 2P';
}

nav{
	width: 100%;
	margin: 0 auto;
	background-color:black;
	position: sticky;
	top:0px;
}

nav ul{
	list-style-type: none;
}

nav ul li{
	float: left;
	width: 25%;
	text-align: center;
	position: relative;
}

nav ul::after{
	content:"";
	display:table;
	clear: both;
}

nav a{
	display: block;
	text-decoration: none;
	color: white;
	border-bottom: 2px solid transparent;
	padding: 10px 0px;
}

nav a:hover{
	color: #7400ff;
	border-bottom: 2px solid #7400ff;
}

.sous{
	display: none;
	box-shadow:0px 1px 2px #CCC;
	background-color: black;
	position: absolute;
	width: 100%;
	z-index:1000;
}

nav > ul li:hover .sous{
	display: block;
}

.sous li{
	float: none;
	width: 100%;
	text-align: left;
}

.sous a{
	padding: 10px;
	border-bottom:none;
}

.sous a:hover{
	border-bottom: none;
	background-color: black;
}

.deroulant > a::after{
    content:" ▼";
    font-size: 12px;
}










