/* Header Home Banner */
#home-banner {
    background-image: url(../media/images/iceland-northern-lights.jpg);
}

/* ********** Main Image Boxes ********** */

/* Main ******************** */
#main-home {
    justify-content: center;
    margin: 10rem 0;
}

/* Styled with Responsive Flexbox */
section.home-image-boxes {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    align-items: center;
    max-width: 75rem;
    margin: 0 auto;
}

.box {
    min-width: 19rem;
    min-height: 19rem;
    width: 19rem;

    display: flex;
    justify-content: center;
    align-items: center;

    color: var(--text-color);
}

/* Main Box Images */
.box>img {
    height: 19rem;
    width: 19rem;
}

#content-box {
    flex-direction: column; 

    gap: 1rem;
    background: var(--bg-color);
}

#content-box h3 {
    text-align: center;
}
