/* General Styles */
body {
    background-color: #0B3D91;
    font-family: 'Lato', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.game-container {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

/* Game canvas */
canvas {
    background-color: #E0FFFF;
    border: 4px solid #FFFFFF;
    margin-bottom: 10px;
}

/* Controls layout */
.controls {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.control-row {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Control buttons */
button {
    font-size: 24px;
    padding: 10px;
    border: 2px solid #2C3E50;
    border-radius: 8px;
    background-color: #FFD700;
    color: #2C3E50;
    cursor: pointer;
    width: 60px;
    height: 60px;
}

button:active {
    background-color: #FF4500;
}

/* Spacer to create the gap between buttons */
.spacer {
    width: 60px;
}

#score {
    font-size: 24px;
    color: #FFFFFF;
}

#restartBtn {
    background-color: #2C3E50;
    color: #FFFFFF;
    padding: 10px 20px;
    font-size: 18px;
    border-radius: 8px;
    cursor: pointer;
}

#restartBtn:hover {
    background-color: #FF4500;
}
