body {
    padding: 0;
    margin: 0;
    background-color: rgb(0, 0, 0);
    font-family: sketchy;
    width: 100%;
    height: 100vh;
    color: white;
    font-size: 1.8em;
    text-align: center;
}


a {
    text-decoration: none;
    margin: 0;
    padding: 0;
    color: white;
}


.tot{
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.dechoix{
    margin: 10px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    width: 800px;
}

p{
    margin-bottom: 20px;
    text-align: center;
}

.titre_spawn1{
    color: red;
    opacity: 0;
    animation-duration: 2s;
    animation-name: fadein;
    animation-delay: 200ms;
    animation-fill-mode :forwards;
    
}

.phrase_spawn2 {
    margin-top: 20px;
    color: white;
    opacity: 0;
    animation-duration: 2s;
    animation-name: fadein;
    animation-delay: 2s;
    animation-fill-mode :forwards;
    
}

.imgscie {
    margin-top: 50px;
    margin-bottom: 50px;
    width: 200px;
    height: 125px;
}

.imghache {
    margin-top: 30px;
    margin-bottom: 50px;
    width: 100px;
    height: 200px;
    transform: rotate(45deg);
}

.phrase {
    margin: 20px;
}

.choix1_spawn3 {
    width: 300px;
    height: 310px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    opacity: 0;
    animation-duration: 2s;
    animation-name: fadein;
    animation-delay: 4s;
    animation-fill-mode :forwards;
    
}

.choix1_spawn3:hover {
    border: 1px red solid;
    transition: 500ms;
    border-radius: 20px;
    color: red;
}

.choix2_spawn4 {
    width: 300px;
    height: 310px;
    flex-direction: column;
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0;
    animation-duration: 2s;
    animation-name: fadein;
    animation-delay: 5s;
    animation-fill-mode :forwards;
    
}

.choix2_spawn4:hover {
    color: red;
    border: 1px red solid;
    transition: 500ms;
    border-radius: 20px;
   
}

.hache {
    margin-top: -20px;
}

@keyframes fadein{
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
