body {
    /* text-align: center; */
    background-color: rgb(0, 0, 0);
}

#title {
    font-family: 'Press Start 2P', cursive;
    color: white;
    font-size: 3rem;
    margin: 5%;
    text-align: center;
}

.container {
    display: block;
    width: 50%;
    margin: auto;
    text-align: center;
}

.btn {
    display: inline-block;
    margin: 25px;
    height: 200px;
    width: 200px;
    border: 10px solid white;
    border-radius: 30px;
}

#red {
    background-color: red;
}

#blue {
    background-color: blue;
}

#green {
    background-color: rgb(153, 255, 0);
}

#yellow {
    background-color: yellow;
}

.foot {
    font-family: 'Press Start 2P', cursive;
    color: white;
    text-align: end;
}

.pressed {
    box-shadow: 0 0 20px white;
    background-color: rgb(246, 240, 240);
}

.game-over {
    background-color: red;
    opacity: 0.8;
}