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: 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;
}

.choix{
    color: red;
}

.phrase {
    color: white;
}

.imgscie {
    margin-top: 50px;
    margin-bottom: -50px;
    width: 200px;
    height: 125px;
}

.imghache {
    margin-top: 30px;
    width: 100px;
    height: 200px;
    transform: rotate(45deg);
}

.phrase {
    margin: 20px;
}

.choix1 {
    width: 300px;
    height: 310px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.choix1:hover {
    border: 1px rgb(255, 255, 255) solid;
    transition: 500ms;
    border-radius: 20px;
    color: rgb(255, 255, 255);
}


.spawn1 {
    opacity: 0;
    animation-duration: 1s;
    animation-name: fadein;
    animation-delay: 1s;
    animation-fill-mode :forwards;
}


.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;
    }
}
