.main-content {
    display: grid;
    gap: 20px;
    color: #f2f2f2;
}

.main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-items: center;
}

.main-content p {
    font-size: 1.25rem;
}

.main-content h2 {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.2em;
}

.main-content h3 {
    font-size: 1.25rem;
    font-weight: 300;
}

.main h1 {
    font-size: 2.5rem;
    line-height: 1.2em;
    font-weight: 300;
    font-family: Brinnan;
}
.main-content > span {
    display: block;
    height: 1px;
    width: 120px;
    background-color: #f2f2f2;
}


@media only screen and (min-width:460px) and (max-width:880px) {

    .main-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .main-content {
        display: grid;
        justify-items: center;
        text-align: center;
    }

}

@media only screen and (min-width:0px) and (max-width:459px) {

    .main-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .main-content {
        display: grid;
        justify-items: center;
        text-align: center;
    }

    .main h1 {
        font-size: 1.8rem;
    }

    .main h2 {
        font-size: 1.2rem;
    }

    .main-content p {
        font-size: 1rem;
    }

}