/* ~~~ About ~~~ */

.about {
    background-image: url("/static/images/backgrounds/about.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto;
}

.about main {
    padding: 0;
}

.about .breadcrumbs {
    background-color: var(--bg_overlay);
}

.about .bg-filter {
    width: 100%;
    height: 100%;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background-color: var(--bg_overlay);
}

.about .bg-filter > div {
    width: 90%;
    max-width: 800px;
    height: 100%;
    margin: 40px auto;
    padding: 20px 40px;
    background-color: var(--bg_overlay);
}

.about main h1 {
    color: var(--fc_typ);
    text-align: center;
    padding: 20px 40px;
}

.about p {
    color: var(--fc_typ);
    text-align: center;
    padding: 20px 0;
    line-height: 1.5em;
}

.about p em {
    color: var(--fc_accent);
    font-size: 1.1em;
}

.about p .logo {
    color: var(--fc_accent_logo);
    font-weight: bold;
}

.about hr {
    border-top: 1px solid var(--fc_typ);
    width: 100%;
}

/* About Responsive */

@media (min-width: 500px) {
    .about .bg-filter {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .about .bg-filter > div {
        height: fit-content;
    }
}