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;
}

a:hover{
    color: red;
}

.fondquete20 {
    position: absolute;
    width: 100%;
    height: 99vh;
}

.tot{
    position: absolute;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.famille{
    width: 100%;
    height: 100vh;
}

.dechoix{
    display: flex;
    justify-content: center;
    align-items: center;
}

.choix2{
    margin-left: 20px;
}

.choix1{
    margin-right: 20px;
}


.titre{
    margin-top: 200px;
}

.phrase{
    margin-top: 20px;
}

.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;
}


.spawn4 {
    opacity: 0;
    animation-duration: 1s;
    animation-name: fadein;
    animation-delay: 3.5s;
    animation-fill-mode :forwards;
}



@keyframes fadein{
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
