#game-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
    font-family: Arial, sans-serif;
}

#game-canvas {
    border: 2px solid #333;
    background-color: #f0f0f0;
}

#score {
    margin: 10px 0;
    font-size: 1.5rem;
    font-weight: bold;
}

#controls p {
    margin: 10px 0;
    color: #555;
}

#restart-btn {
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
}

#restart-btn:hover {
    background-color: #0056b3;
}