body {
    background: rgb(251, 252, 202);
    background: linear-gradient(180deg, rgba(251, 252, 202, 1) 0%, rgba(202, 255, 254, 1) 100%);
}

.main-img-container {
    width: 94%;
    height: 94%;
    margin: 0 auto;
}

.main-header,
.main-header__text {
    margin-top: 50px;
}

.main-title {
    color: #787C9B;
}

h1,
h2 {
    text-align: center;
}

.main-header__text h1 {
    font-size: 1.5em;
}

.main-header__paragraph {
    font-size: 1.3em;
    font-weight: 100;
}

.info {
    margin-bottom: 1em;
}

.info-title {
    color: #F16032;
    font-size: 1.5rem;
    margin-top: 1.5em;
}

.final-section-text {
    font-size: 1.4rem;
}

.show-section {
    margin: 30px 0 100px 0;
}

.container-overlay {
    position: relative;
    width: 38rem;
}

.image {
    display: block;
    width: 100%;
    height: auto;
}

.container-overlay:hover .overlay-title {
    background-color: #F16032;
    transition: .5s ease;
}

.overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: .5s ease;
    background-color: #000000;
}

.container-overlay:hover .overlay {
    opacity: .7;
    background-color: #081645;
    transition: .5s ease;
}

.container-overlay:hover .overlay-text-container {
    opacity: .9;
}

.overlay-text-container {
    position: absolute;
    bottom: 0;
    opacity: 0;
    transition: .5s ease;
    padding: 1.5em;
    z-index: 1;
}

.text-overlay {
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    font-size: 1.5em;
}

.overlay-title {
    position: absolute;
    padding: .5em;
    color: #FFFFFF;
    background-color: #787C9B;
    transition: .5s ease;
    width: 100%;
    border-radius: 0 0 5px 5px;
    text-align: center;
}

.divider-text-container {
    margin-bottom: 1em;
}

.divider-paragraph {
    font-size: 1.5em;
    font-weight: 100;
}

@media screen and (max-width: 375px) {
    .main-header__text h1 {
        font-size: 1.1em;
    }
}

@media screen and (max-width: 1400px) {
    .container-overlay {
        margin-bottom: 7rem;
        width: 100%;
    }
    .show-section {
        margin: 0;
    }
}