body {
    background-image: url('fond.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    margin: 0;
    padding: 0;
    font-family: Canted Comic, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 100vh;
    color: #ebe5e5;
    text-align: center;
}

h1 {
    color: #7c702f;
    font-family: 'Canted Comic', sans-serif;
    font-size: 6rem;
    text-shadow: 2px 2px 4px #000;
    text-align: center;
    margin-bottom: 20px;
}

nav {
    width: 100%;
    margin: auto;
    background-color: yellow;
    position: sticky;
    top: 0px;

}

nav ul{
    list-style-type: none;
}

nav ul li{
    float: left;
    width: 25%;
    text-align: right;
    position: relative;
}

nav ul::after{
    content: "";
    display: table;
    clear: both;
}

nav a{
    display: block;
    text-decoration: none;
    color: black;
    border-bottom: 2px solid transparent;
    padding: 10px 0px;
}

nav a:hover{
    color: rgb(235, 171, 34);
    border-bottom: 2px solid rgb(235, 171, 34);
}

.sous{
    display: none;
    box-shadow: 0px 1px 2px #CCC;
    background-color: yellow;
    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: RGBa(200,200,200,0.1);
}
.deroulant > a::after{
    content:" ▼";
    font-size: 12px;
}



h2 {
    text-align: center;
    color: #fff;
}

section {
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 100px;
    padding: 70px;
    margin: 20px;
    width: 90%;
    max-width: 800px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

img {
    display: block;
    max-width: 100%;                                                                                                                                                                                        
    height: auto;
    border-radius: 8px;

    
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    color: #fff;
}

th, td {
    border: 1px solid #fff;
    padding: 10px;
    text-align: center;
}

th {
    background-color: #444;
}

.gallery img {
    margin: 10px;
    border: 2px solid #fff;
    border-radius: 8px;
    width: 100%;
    max-width: 250px;
    height: auto;


}


.logo a{
	position: relative;
	width: 172px;
	float: left;
}