.mainImgWrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 10rem;
}

.mainImgWrapper img {
    width: 60vw;
    max-width: 1200px;
}

@media (max-width: 800px) {
    .mainImgWrapper img {
        width: 80vw;
        max-width: 1200px;
    }
}

.picturesWrapper {
    margin: 0 15vw;
}

@media (min-width: 769px) and (max-width: 1320px) {
    .picturesWrapper {
        margin: 0 5vw; 
    } 
}
@media (max-width: 768px) {
    .picturesWrapper {
        margin: 0 2rem; 
    } 
}
@media (max-width: 600px) {
    .picturesWrapper {
        margin: auto;
        width: 80vw;
    }
}

.pictureRow {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    opacity: 0;
}

.pictureRowTall {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    opacity: 0;
}

img.twoWidePictures {
    width: calc(50% - 1.5rem);
}

img.twoTallPictures {
    width: calc(37% - 1.5rem);
}

img.twoTallPictures:first-child {
    margin-right: 3rem;
}

@media (max-width: 600px) {
    .pictureRow {
        display: block;
    }
    .pictureRowTall {
        display: block;
    }
    img.twoWidePictures {
        width: 100%;
        margin-bottom: 3rem;
    }
    img.twoTallPictures {
        width: 80%;
        margin-left: 10%;
        margin-bottom: 3rem;
    }
    img.twoTallPictures:first-child {
        margin-right: 0;
    }
    .pictureRow {
        margin-bottom: 0;
    }
}