body {
    background: none !important;
}

/* Partie gauche de l'écran : titre de la page */
#left {
    position: fixed;
    top: 0;
    left: 0;
    width: 55%;
    height: 100vh;
    background: url(/static/img/home/generic-background.jpg) 35% 0;
    background-size: cover;
}

#left h1 {
    color: #fff !important;
    font-family: "Alegreya Sans SC", sans-serif !important;
    font-size: 5vw !important;
    line-height: 5vw !important;
    font-weight: 900;
    text-align: center;
    font-variant: small-caps;
    user-select: none;
    background: none !important;
    text-transform: uppercase !important;
    height: initial !important;
    padding: 0 !important;
    margin-left: 0 !important;
    animation: blue-glow 1000ms infinite alternate linear;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 75%
}

@keyframes blue-glow {
    0% {
        text-shadow: #59d6e4 0 0 10px, #59d6e4 0 0 15px, #59d6e4 0 0 20px, #59d6e4 0 0 25px, #59d6e4 0 0 38px;
    }
    100% {
        text-shadow: #59d6e4 0 0 10px, #59d6e4 0 0 15px;
    }
}

#left::after {
    content: ' ';
    position: absolute;
    top: 0;
    left: 0;
    width: 101%;
    height: 100%;
    background: url(/static/img/home/wave.png) no-repeat right;
    background-size: contain;
}

/* Partie droite de l'écran: FAQ */
#right {
    position: absolute;
    top: 0;
    left: 55%;
    width: 45%;
    padding: 0 5%;
    box-sizing: border-box;
}

#right h2 {
    margin: 80px 0 30px;
    text-align: center;
    color: #646262;
    font-family: "Alegreya Sans SC", sans-serif;
    font-size: 45px;
    line-height: 35px;
    font-weight: 800;
}

#right div {
    padding: 0 40px;
    margin: 64px 0;
    text-align: justify;
    text-align-last: left;
    font-family: "Alegreya Sans", sans-serif;
    font-size: 16px;
    line-height: 20px;
}

#right div p {
    margin: 32px 0;
    color: #646262;
}

#right div h3 {
    color: #B6B0B0;
    font-family: "Alegreya Sans SC", sans-serif;
    font-size: 25px;
    font-weight: 800;
    line-height: 25px;
}

#right div a {
    font-weight: 700;
    font-style: italic;
    color: #9A9A9A;
}

#right ul {
    margin: 32px 0;
}

#right li {
    margin: 12px 0;
}