body {
    height: 100vh;
    /*
    padding-top: 30px;
    padding-bottom: 30px;
    */
}
#game-container {
    background-image: url('images/background.webp');
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /*height: 100vh;*/
    margin: 0;
    font-family: 'Arial', sans-serif;
    color: white;
    padding-top: 30px;
    padding-bottom: 30px;
}
#logo {
    background-image: url('images/logo.png');
    height: 300px;
    width: 100%;
    background-position: center; /* Centers the image */
    background-size: contain; /* Scales image to fit within the div, maintaining aspect ratio */
    background-repeat: no-repeat; /* Prevents image from repeating */
}

.game-title {
    color: #3b200b !important;
}

#score-container {
    background-image: url('images/score_bg.png');
    background-position: center; /* Center the image */
    background-size: contain; /* Scale image to fit within the div, maintaining aspect ratio */
    background-repeat: no-repeat; /* Prevent image from repeating */
    font-size: 34px;
    margin-bottom: 15px;
    padding: 20px 40px;
    color: #3b200b;
    font-weight: bold;
    display: flex; /* Use flexbox to center text */
    justify-content: center; /* Horizontally center text */
    align-items: center; /* Vertically center text */
    text-align: center; /* Ensure text alignment */
}

/*
#score-container {
    font-size: 24px;
    margin-bottom: 15px;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 10px 20px;
    border-radius: 8px;
    color: #fff;
    font-weight: bold;
}
*/

/* Modify your existing #game-board style in style.css */
#game-board {
    background-color: rgba(0, 0, 0, 0.5);
    border: 3px solid #eee;
    border-radius: 10px;
    /* These properties make the canvas responsive */
    width: 90vmin; /* 90% of the smaller viewport dimension */
    height: 90vmin; /* 90% of the smaller viewport dimension */
    max-width: 1200px; /* Optional: sets a maximum size */
    max-height: 1200px;
}

#game-board {
    background-color: rgba(0, 0, 0, 0.5);
    border: 6px solid #ffc785;
    border-radius: 10px;
}

#restart-button {
    margin-top: 20px;
    width: 300px;
    height: 100px;
    background-image: url('images/restart-button.png');
    background-size: contain;
    background-repeat: no-repeat;
    border: none;
    cursor: pointer;
    background-color: transparent;
}