/* Affichage global */
body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    background-color:  black;

}

/* Mise en page globale*/
.logo {
    width: 240px;
    margin: 40px 0 0 40px;
}

main {
    display: flex;
    justify-content: center;
}

main div:nth-child(odd) {
    width: 60%;
    height: 100vh;
    background-color: black;

    display: flex;
    flex-direction: column;
}

main div:nth-child(even) {
    width: 40%;
    height: 100vh;
    background-color: white;
}

/* Partie gauche de la page */
/* Mise en page de l'encart texte */
.fuseeText {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 12vh;
}

.textOnly {
    width: 25vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.fusee {
    width: 12vw;
    margin: 0 70px 0 0;
    height: fit-content;
}

h1 {
    color: white;
    font-family: 'Roboto condensed', sans-serif;
    font-size: 2vw;
    font-weight: 700;
}

p {
    color: white;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 1.3vw;
    margin: 0;
    line-height: 2.4vh;
}

b {
    font-weight: 700;
}

/* Pastille de bas de page */

.encart span {
    display: block;
    padding: 20px;
    background-color: #F18E04;
    border-radius: 50% 50% 0px 50%;
    width: 70px;
    height: 70px;
    position: absolute;
    right: 41vw;
    bottom: 2vh;
}

.encart p:nth-child(odd) {
    text-transform: none !important;
    font-weight: 400 !important;
    position: relative;
    bottom: 5px;
    font-size: 40px !important;
    line-height: 60px;
}

.encart p:nth-child(even) {
    text-transform: none !important;
    font-weight: 400 !important;
    font-family: 'Roboto condensed', sans-serif;
    position: relative;
    color: black;
    bottom: 11px;
    font-size: 36px !important;
}


/* Mise en page de l'encart droit */
main div:nth-child(even) img {
    float: right;
    width: 4vw;
    margin: 30px;
}


.closeBtn {
    position: absolute;
    left: 91vw;
    bottom: 86vh;
    z-index: 10;
}