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

body {
    background-image: url("img/PODOZAFRA-1024x622.jpg");
    background-repeat: no-repeat;
    background-size: cover;

}

a {
    text-decoration: none;
}

.main-content {
    display: flex;
    flex-direction: row; /* Cambia a dirección de columna en pantallas pequeñas */
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
    width: 100%;
    background: rgba(248, 47, 47, 0.6);
    font-family: sans-serif;
    font-weight: bold;
    color: #fff;
    text-align: center;
    padding: 20px;
    gap: 20px; /* Añade espacio entre los elementos */
}

.pais .banderas {
    max-width: 35%; /* Hace que las banderas sean responsive */
    height: auto;
    margin-bottom: 2%;
}

.logo img {
    max-width: 100%; /* Hace que el logo sea responsive */
    height: auto;
}

@media (max-width: 768px) {
    .main-content {
        flex-direction: column; /* Cambia a dirección de fila en pantallas más grandes */
    }

    .pais .banderas{
        max-width: 50%;
        margin-bottom: 2%;
    }
}