/* General styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #e0f7e0; /* Light green background */
}

.hidden {
    display: none;
}

/* Initial screen styles */
#initial-screen {
    text-align: center;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#initial-screen h1 {
    margin-bottom: 20px;
}

#initial-screen input[type="game-key"] {
    padding: 10px;
    margin-bottom: 20px;
    width: 80%;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#initial-screen div {
    margin-bottom: 20px;
}

#initial-screen label {
    margin-right: 10px;
}

#initial-screen button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: #4caf50; /* Green color */
    color: #fff;
    cursor: pointer;
}

#initial-screen button:hover {
    background-color: #388e3c; /* Darker green color */
}

/* Game screen seeker styles */
#game-screen-seeker {
    text-align: center;
}

#game-screen-seeker img {
    width: 200px;
    height: 200px;
    image-rendering: pixelated; 
}

/* Game screen hider styles */
#game-screen-hider {
    text-align: center;
}

#stopwatch {
    font-size: 2em;
    margin-bottom: 20px;
}

#game-screen-hider button {
    padding: 10px 20px;
    margin: 5px;
    border: none;
    border-radius: 5px;
    background-color: #4caf50; /* Green color */
    color: #fff;
    cursor: pointer;
}

#game-screen-hider button:hover {
    background-color: #388e3c; /* Darker green color */
}