body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: black;
    color: white;
    font-family: Arial, sans-serif;
}

h1 {
    margin-bottom: 20px;
    font-size: 28px;
    text-align: center;
}

#instructions {
    text-align: center;
    font-size: 16px;
    margin-bottom: 30px;
    max-width: 500px;
}

#dice-container {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 20px;
}

#dice-container img {
    width: 80px;
    height: 80px;
    background-color: #1c1c1c;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.2);
    transition: transform 0.2s ease;
}

#dice-container img:active {
    transform: scale(1.1);
}

#score, #attempts {
    font-size: 20px;
    font-weight: bold;
    margin-top: 10px;
}

/* Styling for the reset button */
#reset-button {
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    color: white;
    background-color: #333;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#reset-button:hover {
    background-color: #555;
}