body {
    background-color: black;
    margin: 0px;
}

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

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

}
/*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);
    }
}

.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 h2 {
    font-size: 90px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

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

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

article {
    font-size: 18pt;
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: justify;
    margin-right: 100px;
    margin-left: 100px;
}

.localisation {
    text-align: center;
    
}
.localisation iframe{
    width:50%;
    height:450px;
    border:0
}

.imageNom {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 30px;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.premiereSection {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.deuxiemeSection {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.nomPrenom {
    display: flex;
    flex-direction: row;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 30px;
    font-weight: bold;
    display: flex;
}
.nomPrenom h2{
    margin-right: 10pt;
}
/*médiaquerie*/
@media screen and (max-width: 1100px) {
    .menu {
        display: flex;
        flex-direction: column;
        align-items: center;

    }

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