
#portfolio {
    position: relative;
    z-index : 10;

    background-image: linear-gradient(90deg, #e7f7ff, #ffecec, #f0e4fd);
}

@media screen and (min-width : 760px) {
    #portfolio-content {
        margin-left : 35vw;
        max-width : 900px;
    }
}

.portfolio-card {
    margin-bottom : 4rem;
    padding : clamp(0.5rem, 8vw, 3rem);

    background-color: rgba(255, 255, 255, 0.5);
    border : 2px solid #c3e0ee;
    box-shadow: 5px 5px 0 0px #c3e0ee;
}

.portfolio-card img {
    width : 100%;
    height : 300px;
    /* aspect-ratio: 1 / 1; */
    object-fit: cover;
}

#about {
    position: relative;
    z-index: 70;
    background-color: #fff;
    color: var(--clr-main-dark);
}

#about-img-container {
    width : 100vw;
    border-radius: 0.4rem;
    background-color: var(--clr-main-light);
    text-align: center;
}

#about-img {
    border-radius: 0.4rem;
}



@media screen and (min-width : 1000px) {
    #about-container {
        display : grid;
        grid-template-columns: 1fr 1fr;
        align-items: start;
        gap : 2.5rem;
    }
    
    #about-img-container {
        width : auto;
        text-align: left;
    }

    #about-img {
        transform: translateX(-4rem);
    }
}

#work-together {
    position: relative;
    z-index: 10;
    padding-inline : 4vw;
    padding-bottom : 4rem;
    background-color: #fff;
}

#work-together p {
    margin : 0 auto;
}


#work-together h3 {
    margin-block : 2rem;
}



#contact {
    position: relative;
    z-index: 50;

    background-color: var(--clr-main-ex-dark);
    font-size: 1rem;
    font-weight: 900;
}

.contact-card {
    position: relative;
    z-index: 60;
    transform: translateY(-4rem);
    margin-inline: 4vw;

    box-shadow: 0 0 10px rgb(145, 145, 145);
    background : linear-gradient( #fff, #fff4f4);
    border-radius: 8px;
}

#contact a {
    color : #fff;
}

#contact a:hover {
    color : var(--clr-sec);
}
