html,
body {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Align towards the top */
    align-items: center;
    height: 100vh; /* Full viewport height */
    background: url('bg.png') no-repeat center center fixed; /* Background image */
    background-size: cover; /* Cover entire screen */
    color: white;
    font-family: Arial, sans-serif;
    text-align: center;
}

#game-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px; /* Adds padding at the top */
    padding: 10px 10px 10px 0;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    border-radius: 10px;
}

canvas {
    display: block; /* Removes extra spacing */
}

#controls {
    background: rgba(0, 0, 0, 0.7);
    padding: 10px;
    border-radius: 8px;
    margin-top: 20px;
}
h2 {
    font-family: 'Press Start 2P', cursive;
    font-size: 24px; /* Adjust the size as needed */
    text-align: center; /* Center the text */
    color: white;
}
p {
    font-family: 'Press Start 2P', cursive;
}
