@import url("https://fonts.googleapis.com/css2?family=Exo+2:wght@300;700;900&display=swap");

body {
    font-family: "Exo 2", sans-serif;
    background: linear-gradient( -90deg, rgba(63, 161, 251, 1) 0%, rgba(252, 70, 168, 1) 100% );
    color: white;
    font-size: xx-large;
}

.game-container {
    max-width: 800px;
    margin: 20px auto;
    text-align: center;
}

#game-board {
    position: relative;
    width: 600px;
    height: 400px;
    border: 2px solid #000;
    border-radius: 20px;
    margin: 20px auto;
}

#game-board img {
    max-width: 50px;
    max-height: 50px;
/*    border: 1px solid #000;*/
}

/* Add styles for found images */
#game-board img.found, #selected-images img.found {
    opacity: 0.5; /* Reduce opacity for found images */
    filter: grayscale(100%); /* Apply grayscale filter for found images */
}

#selected-images {
    margin-top: 20px;
}

#timer {
    font-size: 20px;
}

#reset-button {
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 16px;
    background-color: #4caf50;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

#reset-button:hover {
    background-color: #45a049;
}

.message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.9);
    border: 2px solid #000;
    border-radius: 10px;
    font-size: 24px;
    color: black;
    text-align: center;
    display: none; /* Initially hide the messages */
}
