body {
    margin: 0;
    padding: 0;
    background: url('./img/background.png') no-repeat left top;
    background-size: 1026px 673px;
    background-position: 8px 8px;
}

.container {
    width: 1026px;
    height: 673px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.start-button, .leaderboard-button, .how-to-play-button, .reset-button {
    font-size: 24px;
    background-color: #4caf50;
    color: white;
    padding: 20px 40px;
    text-decoration: none;
    border-radius: 10px;
    transition: background-color 0.3s;
}

.start-button:hover, .leaderboard-button:hover, .how-to-play-button:hover, .reset-button:hover {
    background-color: #8b0000;
    cursor: pointer;
}

#playButton {
    background-color: #f2f2f2; 
    color: black;
}

#playButton:hover {
    cursor: pointer;
    background-color: #8b0000;
    color: white;
}

#howToPlayButton {
    margin-top: 10px;
    font-size: 18px;
    padding: 10px;
}

#playerNameInput {
    font-size: 18px;
    padding: 15px;
    margin-top: 10px;
    border: 2px solid #4caf50;
    border-radius: 8px;
    outline: none;
    transition: border-color 0.3s;
}

#leaderboardButton, #resetLeaderboardButton {
    font-size: 18px;
    padding: 10px;
    margin-top: 10px;
}

#errorMessage {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #ff6961;
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    display: none;
    left: 510px;
    top: 120px;
}

.leaderboard-container {
    display: none;
    text-align: center;
    background-color: #5a5a5a;
    padding: 20px;
    border-radius: 10px;
    position: relative;
    bottom: 500px;
    margin-left: 20px;
    height: 300px;
    width: 320px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.how-to-play-container {
    display: none;
    text-align: center;
    background-color: #5a5a5a;
    padding: 20px;
    border-radius: 10px;
    position: absolute;
    left: 650px;
    bottom: 365px;
    margin-right: 20px;
    height: 350px;
    width: 320px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

/* Style leaderboard content */
.leaderboard-container h2, .how-to-play-container h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #fff;
}

.how-to-play-container h2 {
    margin-top: 0px;
}

.leaderboard-container p, .how-to-play-container li {
    font-size: 18px;
    margin-bottom: 5px;
    color: #ddd;
}

.how-to-play-container p {
    font-size: 18px;
    color: #000000;
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 10px;
}