body{
    max-width: 100%;
    margin:0;
    width:auto;
    font-family:Figtree;
    justify-content: center;
    align-items: center;
}

#portfolio-box {
    margin-top: calc();
    align-items: center;
    text-align: center;
    justify-content: space-evenly;
    display:flex;
}

.portfolio-row {
    margin-top: 20vh;
    align-items: top;
    width: 100%;
    display: inline-flex;
    flex-direction: row;
}

.portfolio-column {
    flex: 1;
    margin-left: 2.5vw;
    margin-right: 2.5vw;
    transition: transform ease-in-out .4s;
}

.portfolio-column a{
    text-decoration: none;
    color: #1580eb;
}

.portfolio-column img{
    max-width: 100%;
    max-height: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.portfolio-column:hover {
    transform:scale(1.2, 1.2) translateY(5%);
}

@media screen and (max-device-width: 500px){
    .portfolio-column img{
        width: 100%;
        align-items: center; 
        text-align: center;
        margin-bottom: 3.5%;
    }

    .portfolio-column{
        margin-bottom: 3.5%;
        font-weight: bold;
    }

    #portfolio-box{
        display: block;
        margin-bottom: 144px;
        line-height: 2rem;
        font-family: Figtree;
        font-size: xx-large;
        font-weight: bold;
    }

    .portfolio-row {
        display: block;
        margin-top: 0;
    }

    .portfolio-column:hover{
        transform: none;
    }

}