body{

    font-family: sans-serif;
}

/* MOT(S) */

#words{

    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    font-size: 10vw;
    height: 100vh;

    transition: background 1s, color 1s;
}

#words .state{

    width: 25%;
    padding: 2vw;
}

/* BUTTON */

#button{
    
    position: fixed;
    right: 16px;
    bottom: 16px;
    display: inline-block;
    padding: 12px;
    background: blue;
    color: white;
    border-radius: 24px;
 }

#button:hover{
    
    cursor: pointer;
    background: magenta;
}

/* ÉTATS */
/* Jour */

.day #words{
    
    background: white;
    color: black;
}

/* Nuit */

.night #words{
    
    background: black;
    color: white;
}

