/* DESIGN DU JEU */
body {
    background-color: black;
    font-family: "Roboto", sans-serif;
}

h1 {
    color: white;
    text-align: center;
    margin-top: 2rem;
    font-size: 3rem;
}

#buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 3rem;
    .feu {
        background-color: red;
        padding: .5rem 3rem;
        border-radius: 2rem;
        color: white;
        font-size: 1.2rem;
        font-weight: bold;
        letter-spacing: .1rem;
    }
    
    .eau {
        background-color: blue;
        padding: .5rem 3rem;
        border-radius: 2rem;
        color: white;
        font-size: 1.2rem;
        font-family: "Roboto", sans-serif;
        font-weight: bold;
        letter-spacing: .1rem;
    }
    
    .terre {
        background-color: saddlebrown;
        padding: .5rem 3rem;
        border-radius: 2rem;
        color: white;
        font-size: 1.2rem;
        font-family: "Roboto", sans-serif;
        font-weight: bold;
        letter-spacing: .1rem;
    }  
} 

#game-result{
    color: white;
    font-size: 1.1rem;
    text-align: center;
    margin-top: 2rem;
}

#game-result p:nth-child(2), #game-result p:nth-child(3) {
    font-size: smaller;
    color: grey;
}