h1 + figure img{
    height: 70vh;
    width: auto;
}

figure img{
    width: 70%;
}

.img-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    margin: 2.4rem 0 0 0;
}

.img-container-row{
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
}

.img-container img{
    width: 48%;
    margin: 0;
}

@media (max-width: 768px){
    figure img{
        width: 90%;
    }

    .img-container-row{
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .img-container img{
        width: 90%;
    }
}

