.memeImgs{
    display: flex;
    justify-content: space-between;
    margin: 2rem;
}

.memeImgs img {
    width: 20%;
    border-radius: 1rem;
    box-shadow: 5px 5px 5px 5px var(--darkPink);
}

.kingPinguinMeme{
    clip-path: polygon(0% 20%, 60% 20%, 60% 0%, 100% 50%, 60% 100%, 60% 80%, 0% 80%);
}

.reverseArrow{
    clip-path: polygon(40% 0%, 40% 20%, 100% 20%, 100% 80%, 40% 80%, 40% 100%, 0% 50%);
}

/* Class to create the grid for the memes */
.videoMeme{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 0 1rem 0 1rem;
}

.gradient{
    margin: 0 auto 0 auto;
    height: 10dvh;
    width: 40dvw;
    background: linear-gradient(to left, #f00, #f00 30%, #0f0 70%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.gradientTxt{
    text-decoration: underline;
    font-style: italic;
    font-weight: 700;
    font-size: 20pt;
    animation: blink 600ms infinite;
}

@media screen and (max-width: 400px) {
    .memeImgs{
        flex-direction: column;
        margin: 1rem;
        justify-content: center;
        align-items: center;
    }
    .videoMeme {
        grid-template-columns: 1fr;
        margin: 0;
    }

    .videoMeme iframe{
        width: 80dvw;
        height: 30dvh;
    }
}