body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    background-image: url('background.png'); /* Replace with your image file */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#game-board {
    position: relative;
    width: 400px;
    height: 400px;
    border: 2px solid #333;
    background-color: #000;
}

.snake, .food {
    position: absolute;
    width: 20px;
    height: 20px;
}

.snake {
    background-color: #900C3F;
}

.head {
    background-color: #45a049;
}

.food {
    background-color: #FF0000;
}

#score, #high-score {
    background-color: #000;
    margin-top: 10px;
    font-size: 18px;
    color: #fff;
    border: 5px solid #000;
    border-radius: 5px;
}

#snake-image {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 80px;
    height: auto;
}

button {
    margin-top: 10px;
    padding: 10px;
    font-size: 16px;
    cursor: pointer;
    background-color: #008CBA;
    color: #fff;
    border: none;
    border-radius: 5px;
}

button:hover {
    background-color: #00557E;
}


#leaderboard-container {
    display: none;
    margin-top: 20px;
    padding: 10px;
    border: 2px solid #333;
    border-radius: 5px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    position: relative;
    left: 420px;
    top: -426px;
}

#leaderboard-container h2 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

#leaderboard-container div {
    margin-bottom: 5px;
    font-size: 14px;
    color: #555;
}

#leaderboard-container div:nth-child(odd) {
    background-color: #f9f9f9;
}
