body {
    background-image: url(/uploads/images/fond-aw.png);
}

main {
    height: 900px;
}

main h2 {
    text-align: center;
    margin-top: 2%;
    font-family: Didot;
    color: saddlebrown;
}

main h3 {
    text-align: center;
    margin-top: 2%;
    font-family: cursive;
}

.color {
    color: saddlebrown;
}

/* Filtres */
.filtres {
    text-align: center;
    margin: 2% auto 1%;
}

.filtres input,
select {
    background-color: azure;
    border: 1px solid gray;
    border-radius: 10% / 50%;
    height: 30px;
    text-align: center;
    width: 11rem;
}

.option {
    text-align: center;
    color: blue;
}

/* Menus */
.sectionMenus {
    display: flex;
    justify-content: center;
    margin: 70px auto auto;
}

.carteMenu {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    transition: opacity 1s ease;
    text-decoration: none;
    color: inherit;
}

.carteMenu.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.divMenus {
    display: flex;
    justify-content: space-between;
}

.divMenus a {
    text-decoration: none;
    color: inherit;
    margin: auto 30px auto 30px;
    opacity: 0;
}

.divMenu {
    background-color: azure;
    width: 300px;
    height: 300px;
    padding: 15px;
    border: 2px solid saddlebrown;
    box-shadow: 0 0 10px gray;
    border-radius: 50%;
    text-align: center;
}

.MenuTitre {
    color: saddlebrown;
    font-size: x-large;
    font-family: fantasy;
}

.divMenu:hover {
    transition-duration: 500ms;
    box-shadow: 0 0 20px saddlebrown;
    background-color: rgb(210, 249, 249)
}

.divMenu img {
    width: 100px;
    height: 100px;
    border: 1px solid gray;
    border-radius: 30% / 50%;
}

/* Bouton */
.sectionMenus button {
    width: 100px;
    height: 200px;
    background-color: azure;
}

.sectionMenus button:hover {
    transition-duration: 300ms;
    background-color: rgb(210, 249, 249);
    border-color: rgb(97, 97, 97);
}

.sectionMenus button:active {
    transition-duration: 300ms;
    background-color: rgb(167, 195, 195);
    border: 1px solid black;
}

.btnSuivant {
    margin: auto 0 auto 50px;
    border-radius: 0 100% 100% 0 / 0 50% 50% 0;
    border-left: 1px solid black;
    border-right: 10px solid rgb(172, 172, 172);
    border-top: 2px solid rgb(172, 172, 172);
    border-bottom: 2px solid rgb(172, 172, 172);
}

.btnPrecedent {
    margin: auto 50px;
    border-radius: 100% 0 0 100% / 50% 0 0 50%;
    border-right: 1px solid black;
    border-left: 10px solid rgb(172, 172, 172);
    border-top: 2px solid rgb(172, 172, 172);
    border-bottom: 2px solid rgb(172, 172, 172);
}