body{
    background-color: #f4f4f9;
}


h1 {
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-family: 'Poppins', 'Consolas', sans-serif; /* Ensure fallbacks */
    
    font-size: 30px;
    border: solid 2px 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;
    background-color: #f4f4f9; /* Light background for better contrast */
    padding: 0px; /* Add padding around the container */
}

#gameBoard {
    border: 5px solid #333; /* Darker border for better visibility */
    border-radius: 10px; /* Rounded corners */
    background-color: #fff; /* White background for the game board */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    margin: 20px auto; /* Center the board with some margin */
}

#scoreText {
    font-family: 'Poppins', 'Consolas', sans-serif; /* Ensure fallbacks */
    font-size: 50px;
    color: #333; /* Darker color for better readability */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); /* Add shadow for depth */
    margin-bottom: 00px; /* Space below the score */
}

#resetBtn {
    font-family: 'Poppins', 'Consolas', sans-serif; /* Ensure fallbacks */
    font-size: 20px;
    width: 100px;
    height: 60px;
    border: 4px solid #333; /* Darker border for contrast */
    border-radius: 15px;
    cursor: pointer;
    background-color: #4CAF50; /* Green background color */
    color: #fff; /* White text color */
    transition: background-color 0.3s ease, transform 0.3s ease; /* Smooth transitions */
}

#resetBtn:hover {
    background-color: #45a049; /* Darker green on hover */
    transform: scale(1.05); /* Slightly enlarge the button */
}

#resetBtn:active {
    background-color: #3e8e41; /* Even darker green when button is pressed */
    transform: scale(1); /* Return to original size */
}
