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

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

.experiment-row {
    margin-top: 20vh;
    align-items: top;
    width: 100%;
    display: inline-flex;
    justify-content: space-evenly;
    flex-direction: row;
    margin-left: 20vh;
    margin-right: 20vh;
}

.experiment-column {
    max-width: 30%;
    flex: 1;
    margin-left: 2.5vw;
    margin-right: 2.5vw;
    transition: transform ease-in-out .4s;
}

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

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

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

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

    .experiment-column{
        max-width: 100%;
        width: 100%;
        margin:auto;
        margin-bottom: 3.5%;
        font-weight: bold;
    }

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

    .experiment-row {
        margin:0;
        width: 100%;
        display: block;
    }

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

}