
body{
    background-color: black;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
}

a{
    color: white;
    margin: 20px;
    text-decoration: none;
}

#menu{
    display: flex;
    justify-content: space-around;
}

#logo{
    width: 25%;
    height: 50%;
    margin: auto;
}

.textMenu{
    font-family: "Bebas Neue", sans-serif;
    font-size:x-large;
}

#gaucheMenu{
    display: flex;
    align-items: flex-end;
}

#droiteMenu{
    display: flex;
    align-items: flex-end;
}

.logoReseau{
    height: 40px;
    width: 40px;
}

#fondPrincipal{
    height: 40%;
}

h1, h3, h2{
    color: white;
    font-family: "Archivo Black", sans-serif;
    
}

h1{
    font-size: 50px;
}

#vitrine{
    background-image: url(../img/salleViollet.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 700px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    animation: 6s appartionVitrine;
}

#logoCasque{
    height: 30%;
    width: 30%;
}

#deuximePartie{
    margin: 50px auto 50px auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

#vignetteSon{
    background-image: url(../img/vignetteSon.jpg);
    width: 280px;
    height: 430px;
    background-size: cover;
    border-radius: 10%;
    margin: 10px;

}
#vignetteLumiere{
    background-image: url(../img/vignetteLumiere.jpg);
    width: 280px;
    height: 430px;
    background-size: cover;
    border-radius: 10%;
    margin: 10px;
}
#vignetteEcran{
    background-image: url(../img/vignetteEcran.jpg);
    width: 280px;
    height: 430px;
    background-size: cover;
    border-radius: 10%;
    margin: 10px;
}
#vignetteMobilier{
    background-image: url(../img/vignetteMobilier.jpg);
    width: 280px;
    height: 430px;
    background-size: cover;
    border-radius: 10%;
    margin: 10px;
}


h4{

    color: white;
    font-family: "Bebas Neue", sans-serif;
    font-size: 60px;
    margin: 10% auto auto auto;
}

#deuximePartie div p{
    color: white;
    font-family: "Bebas Neue", sans-serif;
    font-size: 40px;
    width: 80%;
    margin: auto;
}
h2 {
    margin: 20px auto 20px auto;
}

@keyframes appartionVitrine{
    from {
        opacity: 0%;
    }
    to{
        opacity: 100%;
    }
}
.blockVignette{
    opacity: 0%;
    height: 100%;
    width: 100%;
    Display: flex;
    flex-direction: column;
    transition: 2s;
}

#gaucheMenu a:hover{
    text-decoration: underline;
}

.blockVignette:hover{
    opacity: 100%;  
}

#deuximePartie div{
    animation: 2s apparationDeuxime;
}

#partenaire{
    display: flex;
    flex-wrap: wrap;
    margin:0px auto auto auto;

}

#partenaire a{
    height: 100px;
}

#partenaire a img{
    height: 100px;
}


@keyframes apparationDeuxime{
    from{
        visibility: hidden;
    }
    to{
        visibility: visible;
    }
}

@media screen and (max-width: 1200px){ 
    .blockVignette{
        opacity: 100%;
    }
    #logo{
        width: 75%;
    }
    h1{
        font-size: 40px;
    }
    h3{
        font-size: 16px;
    }
    #gaucheMenu a{
        margin: 10px;
        font-size: large;
    }
    #droiteMenu a{
        margin: 10px;
    }
}

