body {
    height: 98vh;
    font-family: sketchy;
    background-color: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
    font-size: 1.5em;
    text-align: center;
}

body{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

img{
    width: 100%;
    height: 99vh;
}

a {
    display: flex;
    justify-content: center;
    text-decoration: none;
    color: rgb(255, 255, 255);
    transition: 0.2s all;
    padding: 10px;
    margin-top: 20px;
    width: 600px;
}

a:hover{
    color: rgb(253, 0, 0);
}

.tot {
    position: absolute;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
}


.haut {
    margin-top: 200px;
    width: 600px;
    display: flex;
    justify-content: center;
    font-size: 1.6em;
}

.milieu{
    width: 600px;
    display: flex;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 20px;
}



.spawn1 {
    opacity: 0;
    animation-duration: 2s;
    animation-name: fadein;
    animation-delay: 1ms;
    animation-fill-mode :forwards;
}

.spawn2 {
    opacity: 0;
    animation-duration: 2s;
    animation-name: fadein;
    animation-delay: 1500ms;
    animation-fill-mode :forwards;
}

.spawn3 {
    opacity: 0;
    animation-duration: 2s;
    animation-name: fadein;
    animation-delay: 2s;
    animation-fill-mode :forwards;
}

.spawn4 {
    opacity: 0;
    animation-duration: 2s;
    animation-name: fadein;
    animation-delay: 2500ms;
    animation-fill-mode :forwards;
}

@keyframes fadein{
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}



