body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
    background-color: #282c34;
    color: #abb2bf;
    font-family: 'Arial', sans-serif;
}

h1 {
    color: #61afef;
    margin-bottom: 20px;
}

.game-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #3a404a;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 20px;
}

canvas {
    background-color: #21252b;
    border: 2px solid #56b6c2;
    border-radius: 4px;
}

.game-info {
    margin-top: 15px;
    text-align: center;
}

#score {
    color: #98c379;
    font-weight: bold;
}

#message {
    color: #e06c75;
    font-weight: bold;
    margin-top: 10px;
}

#restartButton {
    background-color: #61afef;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    margin-top: 10px;
    transition: background-color 0.3s ease;
}

#restartButton:hover {
    background-color: #528cbf;
}

.hidden {
    display: none;
}
