body {
    padding: 0;
    margin: 0;
    background-color: rgb(0, 0, 0);
    font-family: sketchy;
    width: 100%;
    height: 100vh;
    font-size: 1.8em;
}

img{
    width: 100%;
    height: 100vh;
    position: absolute;
    z-index: -1;
    opacity: 0;
    animation-duration: 2s;
    animation-name: fadein;
    animation-delay: 1s;
    animation-fill-mode :forwards;

}

p {
    opacity: 0;
    animation-duration: 2s;
    animation-name: fadein;
    animation-delay: 2s;
    animation-fill-mode :forwards;
}

a {
    color: red;
    opacity: 0;
    animation-duration: 2s;
    animation-name: fadein;
    animation-delay: 4s;
    animation-fill-mode :forwards;
}


.texte {
    width: 30%;
    display: flex;
    text-align: center;
    flex-direction: column;
}

.texteh {
    margin-top: 3%;
    margin-left: -50px;
    width: 100%;
    height: 25vh;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.gauche {
    color: white;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-direction: column;
    height: 30vh;
}

@keyframes fadein{
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
