body {
    background-color: hsl(0, 0%, 90%);
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

h1 {
    margin: 30px auto;
    font-size: 30px;
    border: solid 5px black;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
    padding-bottom: 5px;
    width: 50%; /* Set the length of the border */
}


#gameContainer {
    text-align: center;
}

#gameBoard {
    border: 3px solid black;
    border-radius: 10px; /* Rounded corners for a softer look */
    background-color: #fff; /* Adding a background color to the game board */
}

#scoreText {
    font-family: 'Poppins', sans-serif;
    font-size: 50px;
    color: #333; /* Darker color for better contrast */
    margin: 10px 0;
}

#resetBtn {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    width: 100px;
    height: 50px;
    border: 2px solid black;
    border-radius: 10px;
    background-color: #f5f5f5; /* Light background color */
    color: black; /* Text color */
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease; /* Smooth transition */
}

#resetBtn:hover {
    background-color: hsl(0, 0%, 70%);
    transform: scale(1.05); /* Slightly enlarge the button on hover */
}

#resetBtn:active {
    background-color: hsl(0, 0%, 60%);
    transform: scale(0.95); /* Slightly shrink the button when clicked */
}
