html,
body {
    font-family: var(--default-font) !important;
    font-size: 62.5% !important;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    background-color: var(--bg-color);
    color: var(--text-color);
}

/********** PAGE LAYOUT **********/

.page-layout {
    display: grid;
    grid-template-columns: 25rem 1fr 25rem;
    width: 100%;
    flex: 1;
}

.page-layout .ad-left,
.page-layout .ad-right {
    min-height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    background: none;
}