body {
    height: 98vh;
    font-family: sketchy;
    background-color: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
    font-size: 1.5em;
}

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;
    cursor: pointer;
}

#t1{
    opacity: 0;
    transition: 1s;
}
#t2{
    opacity: 0;
    transition: 5s;

}
#t3{
    opacity: 0;
    transition: 10s;
}
#btn{
    opacity: 0;
    transition: 0.2s all;
}

a:hover{
    color: rgb(253, 0, 0);
}

.tot {
    position: absolute;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.spawn1 {
    opacity: 0;
    animation-duration: 2s;
    animation-name: fadein;
    animation-delay: 1s;
    animation-fill-mode :forwards;
}

.spawn2 {
    opacity: 0;
    animation-duration: 2s;
    animation-name: fadein;
    animation-delay: 2s;
    animation-fill-mode :forwards;
}

.spawn3 {
    opacity: 0;
    animation-duration: 2s;
    animation-name: fadein;
    animation-delay: 3s;
    animation-fill-mode :forwards;
}

.spawn4 {
    opacity: 0;
    animation-duration: 2s;
    animation-name: fadein;
    animation-delay: 4s;
    animation-fill-mode :forwards;
}

.spawn5 {
    opacity: 0;
    animation-duration: 2s;
    animation-name: fadein;
    animation-delay: 5s;
    animation-fill-mode :forwards;
}

.spawn6 {
    opacity: 0;
    animation-duration: 2s;
    animation-name: fadein;
    animation-delay: 6s;
    animation-fill-mode :forwards;
}

@keyframes fadein{
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}



