*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.body {
    background-color: #27081d;
    text-align: center;
    font-family: 'Courier New', Courier, monospace;
}

.bodyMenu {
    background-color: #27081d;
    font-family: 'Courier New', Courier, monospace;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0;
}

.bodyMenu button {
    background: green;
    color: white;
    font-size: 18px;
    padding: 10px 20px;
    width: 200px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: block;
    margin: 10px 10px 10px 10px;
    font-family: 'Courier New', Courier, monospace;
}

.score {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.scoreText {
    margin: 0px 0px 10px 0px;
    color: white;
}

.gameOverScreen {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    gap: 4px;
    border-radius: 10px;
    display: none;
    flex-direction: column;
    align-items: center;
}

.gameOverScreen button {
    background: green;
    color: white;
    font-size: 18px;
    padding: 10px 20px;
    width: 200px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.gameOverScreen button:hover {
    background: limegreen;
}

.playButton {
    background-color: black;
    align-items: center;
    position: absolute;
    top: 50%;
}