/* Estilos generales del juego */
body {
    font-family: Arial, sans-serif;
    background-color: #f3f4f6;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    padding: 0;
}

.game-container {
    text-align: center;
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 20px;
}

.game-title {
    font-family: 'Patrick Hand', cursive;
    font-size: 2.5rem;
    background: linear-gradient(90deg, #fbc2eb, #ff9a9e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0 0 20px;
}

.level {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.game-image {
    width: 150px;
    height: auto;
    margin: 10px;
    cursor: pointer;
    border: 2px solid #4db6ac;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.result-message {
    font-size: 1.2rem;
    margin: 10px 0;
}

.next-btn {
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    background-color: #4db6ac;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 20px;
}

.next-btn:hover {
    background-color: #00796b;
}

.congratulations {
    font-family: 'Patrick Hand', cursive;
    font-size: 2rem;
    background: linear-gradient(90deg, #fbc2eb, #ff9a9e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 20px;
}
/* Añadir estilos para el botón "Volver al Menú" */
.menu-btn {
    display: block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.menu-btn:hover {
    background-color: #218838;
}
.level img {
    width: 150px; /* Ajusta el tamaño según sea necesario */
    height: auto;
    margin: 10px;
    cursor: pointer;
}
/* Ajusta el tamaño y alineación de las imágenes en el nivel 3 */
#level-3 img {
    width: 150px;  /* Ajusta el tamaño según tus necesidades */
    height: 150px; /* Asegura que todas las imágenes tengan la misma altura */
    object-fit: cover; /* Mantiene la proporción de la imagen sin deformarla */
    margin: 10px;
    cursor: pointer;
    display: inline-block; /* Alinea las imágenes horizontalmente */
}






