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;
}

.choix{
    color: red;
}

.phrase {
    color: white;
}

.img1 {
    width: 102px;
    margin-top: 30px;
    height: 185px;
}

.img2 {
    margin-top: 50px;
    margin-bottom: 50px;
    width: 250px;
    height: 125px;
}

.img3 {
    margin-top: 30px;
    width: 102px;
    height: 205px;
}

.phrase {
    margin: 20px;
}

.choix1 {
    width: 300px;
    height: 310px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.choix1:hover {
    border: 1px red solid;
    transition: 500ms;
    border-radius: 20px;
    color: red;
}

.choix2 {
    width: 300px;
    height: 310px;
    flex-direction: column;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.choix2:hover {
    color: red;
    border: 1px red solid;
    transition: 500ms;
    border-radius: 20px;
}

.choix3 {
    width: 300px;
    height: 310px;
    flex-direction: column;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.choix3:hover {
    color: red;
    border: 1px red solid;
    transition: 500ms;
    border-radius: 20px;
}


.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;
}


.spawn4 {
    opacity: 0;
    animation-duration: 1s;
    animation-name: fadein;
    animation-delay: 3.5s;
    animation-fill-mode :forwards;
}

.spawn5 {
    opacity: 0;
    animation-duration: 1s;
    animation-name: fadein;
    animation-delay: 4s;
    animation-fill-mode :forwards;
}


@keyframes fadein{
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
