body {
    height: 98vh;
    font-family: sketchy;
    background-color: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
    font-size: 1.3EM;
}

body{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

img {
    width: 200px;
    object-fit: cover;
    position: relative;
}

.pass {
    width: 800px;
    position: relative;
    display: flex;
    justify-content: flex-end;
}

a {
    display: flex;
    justify-content: flex-end;
    text-decoration: none;
    color: white;
    transition: 0.2s all;
    padding: 10px;
    margin-top: 50px;
}

a:hover{
    transform: scale(0.90);
    letter-spacing: 5px;
    transition: 0.2s all;
}

.texte{
    width: 800px;
    margin-bottom: 30px;
    text-align: center;
}

.presentation {
    display: flex;
    justify-content: center;
}

.pouvoir{
    display: flex;
    justify-content: center;
    
}

.categorie1{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.categorie2{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0px;
}

.categorie3{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.eau {
    width: 200px;
    height: 200px;
}

.vent {
    width: 200px;
    height: 200px;
}

.sv {
    position: absolute;
    margin-top: 100px;
}

.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;
}

.spawn5 {
    opacity: 0;
    animation-duration: 2s;
    animation-name: fadein;
    animation-delay: 5s;
    animation-fill-mode :forwards;
}

@keyframes fadein{
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}



