
.about {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    gap: 3rem;
}

.about-content {
    max-width: 500px;
}

.about h2 {
    display: flex;
    flex-direction: column;
    font-size: 3rem;
    letter-spacing: .2rem;
    color: var(--light-color-1);
    padding-left: 2rem;
    background: linear-gradient(-45deg, #bae8cf, #7fe0b2, #AB9BFF, #86c3e7);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-stroke: 1px transparent;
}

.about h2 span{
    font-size: 7rem;
    text-transform: uppercase;
}

.about .about-images {
    display: flex;
    flex-direction: column;
    margin-top: -8rem;
    flex: 0 1 40%;
}
.about .about-images img {
    width: 300px;
}

.about .about-images img:nth-child(2) {
   margin: -2rem 0 -2rem auto
}


@media screen and (max-width: 768px) {
    .about {
        flex-direction: column-reverse;
        gap: 0;
        text-align: center;
        align-items: center;
    }

    .about .about-images {
        margin-top: 0;
    }

    .about .about-images img {
        width: 50%;
        height: auto;
        margin: 0 auto;
    }

    .about .about-images img:nth-child(2),
    .about .about-images img:nth-child(3) {
        display: none;
    }

    .about h2 {
        font-size: 3rem;
        padding-left: 0;
        text-align: center;
        margin: 2rem 0;
    }

    .about h2 span {
        font-size: inherit;
        letter-spacing: 0;
    }
    
}