h1 {
	text-align: center;
	color: white;
	font-family: Comic Sans MS;
	width: 100%;
}
h2 {
	text-align: center;
	color: white;
}

h3 {
	text-align: center;
	color: white;
}

body {
	background-image: url(images/bulles.jpg);
	background-size: 100%;
}

nav{
	width: 100%;
	margin: 0 auto;
	position: sticky;
	top: 0px;
}
nav ul{
	list-style-type: none;
}
nav ul li{
	float: right;
	width: 20%;
	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: orange;
	border-bottom: 2px solid goldenrod;
}
.sous{
	display: none;
	box-shadow: 0px 1px 2px #CCC;
	background-color: grey;
	position: sticky;
	width: 95%;
	z-index: 1000;
}
nav > ul li:hover .sous{
	display: block;
}
.sous li{
	float: left;
	width: 100%;
	text-align: left;
}
.sous a{
	padding: 10px;
	border-bottom: none;
}
.sous a:hover{
	border-bottom: none;
	background-color: rgba(200, 200, 200, 0.1);
}
.deroulant > a::after{
	content: " •";
	font-size: 22px;
}

div{
	width: 100%;
	margin: 0 auto;
	position: sticky;
	top: 0px;
}

div ul{
	list-style-type: none;
}

div ul li{
	float: right;
	width: 20%;
	text-align: center;
	position: relative;
}
div ul::after{
	content: "";
	display: table;
	clear: both;
}

div a{
	display: block;
	text-decoration: none;
	color: white;
	border-bottom: 2px solid transparent;
	padding: 10px 0px;
}

ul{
	text-align: left;
	color: white;
	font-family; fantasy;
}

p{
	text-align: center;
	color: white;
	font-family: fantasy;
	font-size: 30px;
}

.container {
	display: grid; 
	margin:5%;
	width:90%;
  	position: static;
	background-color: white;
	filter: opacity(75%);
	grid-template-columns: 1fr 1fr; 
	grid-template-rows: 1fr 1fr; 
	gap: 0px 0px; 
	grid-template-areas: 
		"image titre"
		"image description"
}
.image { 
	grid-area: image; 
	font-size:12px;
	position: static;
	text-align: center;
}

.image img{
	width:100%;
  	position: static;
}	

.titre { grid-area: titre; 
	font-size:40px;
	text-align: center;
	margin-top:10%;
	position: static;
}
.description { grid-area: description; 
	position: static;
	margin: 15px;
	margin-left: 5%;
	font-size: 110%;
	width: 90%;
}

.description input{
	width:100%;
  	position: static;
	margin-bottom: 0px;
}
