
.container {
    margin-top: var(--header-height);
    background-color: var(--bg-secondary);
}


h1 {
    display: block;
    text-align: center;
    width: 100%;
    margin: 3rem auto;
    font-size: 3em;
    font-weight: 800;
    color: var(--bg-primary);
    text-decoration: underline;
    padding: 1rem 0;
}

.about-us {
    background-color: var(--bg-primary);
    padding: 2rem;
    min-height: calc(100vh - var(--header-height));
    border-radius: 8px;
}

.about-us h3 {
    text-align: center;
    font-size: 2em;
    font-weight: 700;
}

.about-us p {
    width: 100%;
    text-align: left;
    font-size: 1.2em;
    margin: 2rem auto;
    border-left: 1px solid var(--cta);
    border-right: 1px solid var(--cta);
    padding: 1rem;
}

.about-us i {
    color: var(--bg-secondary);
    font-size: 1.5em;
    padding: 0.7rem;
}

.about-us p a{
    text-decoration: underline;
    color: var(--bg-secondary);
}


@media only screen and (max-width: 1100px) {

    .about-us p {
        font-size: 1.1em;
        margin: 1.5rem auto;
    }


}