html {
    height: 100%;
}

body {
    margin: 0;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

:root {
    --pri-font: "REM", sans-serif;
    --sec-font: "Plus Jakarta Sans", sans-serif;
}

.section-heading {
    padding: 20px 0 0;
    text-align: center;
    height: 90px;
    text-transform: uppercase;
}

.section-heading h2 {
    font: 600 48px / 18px var(--pri-font);
    -webkit-text-stroke-width: 0;
    -webkit-text-stroke-color: transparent;
    color: rgba(0, 0, 0, 0.05);
}

.section-heading h4 {
    font: 600 36px / 10px var(--pri-font);
    color: #0B3D2C;
}

.body-content {
    flex: 1;
}

footer {
    background-color: #0B3D2C;
    color: #F0FFF0;
}

a {
    color: #0b3d2c;
}

a:hover {
    color: #0b3d2c;
    text-decoration: underline;
}

.pagination {
    justify-content: center;
    margin: 20px 0;
}

.pagination .page-numbers {
    display: flex;
    min-width: 32px;
    min-height: 32px;
    align-items: center;
    justify-content: center;
    background: #f3f3f3;
    white-space: nowrap;
    padding: 0 8px;
    margin: 8px 4px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
}

.pagination .page-numbers.current {
    background: #0b3d2c;
    color: #fff;
}

@media (max-width: 992px) {
    .section-heading {
        padding: 16px 0 0;
        text-align: center;
        height: 80px;
        text-transform: uppercase;
    }

    .section-heading h2 {
        font: 600 36px / 18px var(--pri-font);
        -webkit-text-stroke-width: 0;
        -webkit-text-stroke-color: transparent;
        color: rgba(0, 0, 0, 0.05);
    }

    .section-heading h4 {
        font: 600 32px / 10px var(--pri-font);
        color: #0B3D2C;
    }

    .pagination {
        margin: 12px 0;
    }

    .pagination .page-numbers {
        min-width: 28px;
        min-height: 28px;
        padding: 0 8px;
        margin: 8px 4px;
        border-radius: 4px;
        font-size: 12px;
        font-weight: 500;
    }
}