body {
    background-color: rgb(0, 0, 0);
    margin: 0;
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100vw;
    background-color: #242526;
    margin: 0%;
    padding-left: 0%;
}

.menu li {
    width: 15vh;
    font-size: 24px;
    height: fit-content;
    padding-top: 10px;
    padding-bottom: 10px;
    display: flex;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #f4EB49;
    align-items: center;
    justify-content: space-around;
    font-weight: bold;

}

.menu li:hover {
    transition-duration: 0.4s;
    border-radius: 10px;
    background-color: #3b3c3d;
}

.menu li a:hover {
    color: #E93578;
}

a {
    color: #f4EB49;
}

#active {
    width: 15vh;
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

    color:#E93578;
}

.titrePrincipale {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    margin-bottom: 0px;
}

.titrePrincipale h1 {
    font-size: 90px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.titreJaune {
    color: #f4EB49;
    margin-bottom: 0%;
}

.titreRose {
    color: #E93578;
    margin-top: 0%;
}

.menuImage {
    display: flex;
    flex-direction: row;
    width: 100vw;
    justify-content: space-around;
    align-items: center;
}

.texte {
    display: flex;
    align-items: center;
    font-family: Arial, Helvetica, sans-serif;
    color: white;
    margin-bottom: 50px;
    margin-left: 50px;
    margin-right: 50px;
    text-align: justify;
    padding-top: 40vh;
    font-size: 18pt;
}

.logo {
    margin-right: 50px;
    margin-left: 50px;
}

.menuImage img:hover {
    border: 1px inset #f4EB49;
}
/*transition du menu*/
.transition {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 2s forwards;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
/*médiaquerie*/
@media screen and (max-width: 1100px){
    .menu {
        display: flex;
        flex-direction: column;
        align-items: center;

    }
    .menuImage{
        display: flex;
        flex-direction: column;
    }
}