main {
    background-color: #add8e6;
}

h1 {
    background-color: #EF9559;
    text-align: center;
    padding: 15px;
    margin-top: 0px;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    letter-spacing: 3px;
}

.review-section {
    display: flex;
    background-color: white;
    justify-content: space-around;
    padding: 25px 0px;
    align-items: flex-start;
}

@media screen and (max-width: 1100px) {
    .review-section {
        flex-direction: column;
    }

    .review-section > img {
        margin: 25px 0px;
    }
}

.gallery-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
}

.gallery-section > img, .perma-column > img {
    max-width: 500px;
    max-height: 500px;
    margin: 7px;
}

.perma-column {
    display: flex;
    flex-direction: column;
}