
/* Para pantallas de hasta 480px (móviles) */
@media screen and (max-width: 900px) {
    .site-header nav{
        padding-top: 1rem;
        justify-content: center;
        align-items: center;
    }
    header.hero .hero-content {
        max-width: 800px;
        height: 32vh;
        margin: auto;
        align-items: center;
        justify-content: center;
        display: flex;
        flex-direction: column;
        gap: 1rem;

        p {
            padding: 1rem;
            font-size: 1rem;
        }
    }

    .hero-image {
        width: 15rem;
        height: auto;
        opacity: 0;
        position: absolute;
        transition: all 1.5s ease-in-out;
    }
}



@media (max-width: 400px) {
    .gallery {
        padding: 1rem 1rem 3rem 3rem;

    }
  }