body {
    padding: 0;
    margin: 0;
    background-color: rgb(0, 0, 0);
    font-family: sketchy;
    width: 100%;
    height: 100vh;
    font-size: 1.8em;
    color: white;
}

#img0{
    width: 100%;
    height: 100vh;
    position: absolute;
    opacity: 1;
    z-index: -10;
    animation-duration: 2s;
    animation-name: fadein;
    animation-delay: 1s;
    animation-fill-mode :forwards;

}

.redirect{
    z-index: 10000;
    transition: 10s;
}

#img1{
    width: 100%;
    height: 100vh;
    margin: 0px;
    padding: 0px;
    position: absolute;
    opacity: 0;
    z-index: -10;
    transition: 2s;
}

#img2{
    width: 100%;
    height: 100vh;
    margin: 0px;
    padding: 0px;
    position: absolute;
    opacity: 0;
    transition: 10s;
    z-index: -10;
}

a {
    color: white;
    text-decoration: none;
}

.postexte{
    width: 100%;
    height: 45vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.texte {
    position: absolute;
    margin: 0;
    font-size: 2em;
}

.poslien{
    width: 100%;
    height: 45vh;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

#lien {
    z-index: 500;
    opacity: 1;
    padding: 20px;
    border: white 2px solid;
    position: absolute;
}

#lien:hover{
    cursor: pointer;
}


.redirectl:hover{
    cursor: pointer;
}


.spawn1 {
    opacity: 0;
    animation-duration: 1s;
    animation-name: fadein;
    animation-delay: 1s;
    animation-fill-mode :forwards;
}

.spawn2 {
    opacity: 0;
    animation-duration: 1s;
    animation-name: fadein;
    animation-delay: 2s;
    animation-fill-mode :forwards;
}

.spawn3 {
    opacity: 0;
    animation-duration: 1s;
    animation-name: fadein;
    animation-delay: 3s;
    animation-fill-mode :forwards;
}

.posindice{
    transition: 5s;
    z-index: 100;
    text-align: center;
}
@keyframes fadein{
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


#indice {
    opacity: 0;
    transition: 5s;
    color: white;
    z-index: 1000;
}

.redirectl{
    color: red;
    z-index: 10000;
    transition: 5s;
}