* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 700px;
    width: 100%;
    overflow: hidden; /* Elimina cualquier posibilidad de scroll */
    background-color: #f8f8f8;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Fondo con la imagen completa */
.background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/FONDO2-PEZ-INICI+CAP.png') no-repeat center center;
    background-size: cover;
}

/* Contenedor principal */
.container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 100vh;
    width: 100vw;
    text-align: center;
    position: relative;
    z-index: 1; /* Asegura que el contenido esté sobre el fondo */
}

/* Texto superior */
h2 {
    font-size: 20px;
    color: #34b233; /* Cambiado a blanco para mejor visibilidad */
    margin-top: 20px;
}

/* Contenedor de las banderas */
.flags-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    flex-grow: 1;
    justify-content: center;
}

/* Estilo de las banderas */
.flag {
    height: 80px;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    width: 200px;
    height: 100px;
}

/* Ajuste en pantallas pequeñas */
@media (max-height: 600px) {
    .flag {
        width: 70px;
        height: 70px;
    }
}

/* Para pantallas más anchas (tablets y landscape mode) */
@media (min-width: 768px) {
    .flags-container {
        flex-direction: row;
        gap: 30px;
    }

    .flag {
        width: 100px;
        height: 100px;
    }
}
