.main {
    padding-top: 120px;
    padding-bottom: 100px;
    background: url(/img/main-background.webp) no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
}

.main-content > p {
    margin-top: 10px;
    margin-bottom: 15px;
    font-size: 1.25rem;
    opacity: .8;
    color: #fff;
}

.main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
}

.main-content > h5 {
    font-weight: 700;
    font-size: 1.8rem;
    color: #fff;
}

@media only screen and (max-width: 1100px) {
    .main-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
        grid-gap: 80px;
    }
}
