/* GENERAL */

body{
    background: #1b1b1b;
    color: #eee;
    font-family: sans-serif;
    text-align: center;
}

.back-link{
    display: inline-block;
    margin: 15px;
    color: #eee;
    text-decoration: none;
}
.back-link:hover{
    text-decoration: underline;
}

/* JEU */

#game-container{
    padding: 10px 0 60px 0;
}

#score-board{
    font-size: 20px;
    font-weight: bold;
}

#game{
    background: #000;
    border: 3px solid #d82c2e;
}

.controls{
    color: #aaa;
    font-size: 14px;
}

/* ECRAN DE FIN DE PARTIE */

#game-over{
    margin-top: 20px;
}
#game-over.hidden{
    display: none;
}
#game-over button{
    background: #d82c2e;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
}
#game-over button:hover{
    background: #b8201e;
}
