body {
    font-family: 'Work Sans','Poppins', sans-serif;
    color: #333;
    background-color: #b6e9fd;
    background-image: url("/images/background.png");
    background-size: 70%;
}

.image-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 100px;
    padding: 0px;
}

.image-gallery > li {
    flex-basis: 350px;
    width: 350px;
    position: relative;
    cursor: pointer;
}

/* .image-gallery::after {
    content: "";
    flex-basis: 350px;
} */

.image-gallery li img {
    object-fit: cover;
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    border-radius: 5px;
}

.image-gallery li h3 {
    text-align: center;
    font-size: 1.2rem;
}

.image-gallery li h4 {
    text-align: center;
    font-weight: 300;
    font-size: 1rem;
}

.heading-text {
    padding: 0 60px;
    margin-bottom: 2rem;
    font-size: 2rem;
    text-align: center;
    font-weight: 500;
}

.heading-text a{
    cursor: pointer;
}

.container {
    padding: 40px 5%;
}

.projects {
    padding: 40px 5%;
}

.projects li{
    display: flex;
    gap: 15px;
    margin-bottom: 100px;
}

.projects li img{
    border-radius: 5px;
    object-fit: cover;
    max-width: 55%;
    height: auto;
    vertical-align: middle;
}

.projects li video{
    border-radius: 5px;
    object-fit: cover;
    max-width: 55%;
    height: auto;
    vertical-align: middle;
}

.projects li h2{
    font-size: 1.4rem;
    font-weight: 500;
}

.projects li h3{
    font-weight: 300;
    font-size: 1.2rem;
}

.link {
    text-decoration: underline;
    cursor: pointer;
}

ul {
    list-style: none;
}

a {
    all: unset;
}

.image-container {
    overflow: hidden; /* Oculta el contenido que se desborda */
}

.image-zoom {
    width: 100%;
    transition: transform 0.3s;
}

.image-zoom:hover {
    transform: scale(1.2);
}


@media only screen and (max-width: 768px)
{
    .projects li{
        display: block;
        margin-bottom: 100px;
    }

    .projects li img{
        max-width: 100%;
    }

    .projects li video{
        max-width: 100%;
    }
}