body {
    background-color: rgb(0, 0, 0);
    margin: 0px;
    padding: 0px;
    width: 100%;
    height: 100vh;
    color: white;
    font-family: sketchy;
    font-size: 1.8em;
}

a {
    text-decoration: none;
    margin: 0;
    padding: 0;
    color: white;
}

a:hover{
    color: red;
}


.tot{
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}

.titre {
    text-align: center;
}

.image {
    width: 800px;
    height: 615px;
    margin-left: -180px;
}

.spawn1 {
    opacity: 0;
    animation-duration: 1s;
    animation-name: fadein;
    animation-delay: 1s;
    animation-fill-mode :forwards;
    z-index: 5;
}

.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;
}

@keyframes fadein{
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
