@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;800&display=swap');
.enlaces-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 90%;
    max-width: 90%;
    margin: 0 auto;
    font-family: Arial, sans-serif; /* Esto solo afecta al contenido dentro de .enlaces-container */
}

.titulo-servicios {
    font-size: 2rem; /* Ajusta este valor según el tamaño que desees */
    color: #000000;     /* Color del texto */
    margin-bottom: 20px; /* Espacio debajo del título */
    text-align: center;
    font-family: 'Nunito', sans-serif;
}

.enlace-box {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;
    color: white;
    font-size: 300%;
    font-weight: bold;
    text-decoration: none;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    transition: transform 0.3s;
    
}

#gastronomia {
    background-image: url('img/gastronomia.png');
}

#turismo {
    background-image: url('img/turismo.png');
}

#hospedaje {
    background-image: url('img/hospedaje.jpg');
}

.enlace-box:hover {
    transform: scale(1.05);
}

/* Responsividad solo para .enlaces-container */
@media (min-width: 800px) {
    .enlaces-container {
        flex-direction: row;
    }
    .enlace-box {
        flex: 1;
        height: 800px;
        font-size: 150%;
        width: 30%;
    }
}

