/* Estilos generales */
body {
    /*height: 100%; /* Mínimo tamaño de la pantalla */
    width: 100vw;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff; /* Blanco */
    color: #000000; /* Negro */
}
.tangerine_font{
    font-family: 'Tangerine', cursive;
    font-size: 5em;
}
section {
    height: 100vh;
    width: 100%;
    transition: background-color 0.3s ease; /* Transición de color de fondo */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
section:nth-child(even) {
    background-color: #ffffff; /* Fondo blanco para secciones pares */
}
section:nth-child(odd) {
    background-color: #f9f9f9; /* Fondo gris claro para secciones impares */
}
section.empty {
    background-image: url('/assets/img/Wavy_Med-08_Single-12.jpg');
    background-size: cover;
    background-position: center;
}

section#inicio {
    background-image: url('/assets/img/top-view-green-leaves.jpg');
    background-size: cover;
    background-position: bottom;
    position: relative; /* Añade posición relativa para alinear el texto */
}

section#inicio h1 {
    font-size: 7vw;
    margin: 0;
    font-family: 'Tangerine', cursive; /* Establecer la fuente Tangerine */
    font-weight: 700;
    position: absolute; /* Añade posición absoluta para posicionar el texto */
    top: 30%; /* Ajusta la distancia desde la parte superior */
    left: 50%; /* Alinea el texto en el centro horizontalmente */
    transform: translate(-50%, -50%); /* Centra vertical y horizontalmente */
}
@media screen and (max-width: 768px) { /* Media query para pantallas pequeñas */
    section#inicio h1 {
        font-size: 19vw; /* Tamaño de fuente para pantallas pequeñas */
    }
}

section#contacto {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contacto-item {
    flex: 1;
    display: flex;
    font-weight: 700;
    justify-content: center;
    align-items: center;
}

/* Estilos generales */