html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}


#proyects{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-left: 20%;
    padding-right: 20%;
    padding-bottom: 5%;

}


.image-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px; /* espacio entre imágenes */
}

.image-container img {
    max-width: 300px;
    height: auto;
    object-fit: cover;
    border-radius: 8px;  /* para esquinas redondeadas */
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);  /* opcional: sombra para estética */
}




@media (max-width: 768px) {
    .image-container img {
        max-width: 100%;
        height: auto;
    }
}

p{
    font-size: 25px;
    text-align: justify;
    font-family: "Yanone Kaffeesatz", sans-serif;
    line-height: 1.5;
}

.project-title{
    font-family: "Bebas Neue", sans-serif;   /* MODIFICACION DE LA LETRA */
    font-size: 35px;
    font-weight: 100;
    letter-spacing: 0.02in;
}

body{
    margin: 0%;
}

a{
    text-decoration: none;
    color: black;
}


h1{
    display: flex;
    text-align: center;
    justify-content: center;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 50px;  
}

