body {
    overflow-x: hidden;
}

h1 {
    margin-top: 110px;
    text-align: center;
}

ul {
    list-style: none;
}

#imagenes {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

#imagenes img {
    width: 500px;
    object-fit: cover;
}

#imagenes iframe {
    width: 500px;
    height: 300px;
}

@media screen and (max-width : 500px) {
    #imagenes img {
        width: 300px;
    }

    #imagenes iframe {
        width: 300px;
        height: 200px;
    }
}