#sectionClips {
    display: flex;
    height: auto;
    background: linear-gradient(to bottom, #e357b0, rgb(255, 106, 255));
    flex-direction: column;
    padding-top: 26vh;
    padding-bottom: 25vh;
}
/*titulo*/
#sectionClips-titulo {
    display: flex;
    height: 13vh;
    width: 94vw;
    align-self: center;
    background: rgb(255, 255, 255, 0.5);
    border-radius: 7.5px;
    align-items: center;
    justify-content: left;
}
#sectionClips-titulo p {
    margin-left: 3vh;
    font-size: 50px;
    font-family: "Lilita One";
    color: white;
    font-weight: 900;
    -webkit-text-stroke-width: 0.7px;
    -webkit-text-stroke-color: black;
}
/*contenido*/
#sectionClips-clipsContainer {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    height: 100%;
    width: 100%;
    padding-top: 28px;
    gap: 40px;
}
.clip {
    display: flex;
    background: rgb(255, 255, 255, 0.35);
    width: 385px;
    height: 315px;
    border-radius: 5px;
    outline: 1px solid white;
    justify-content: center;
    overflow: hidden;
}
.clip img {
    height: 100%;
    width: auto;
}