/* Font Declaration */
.header-1 {
    font-size: 48px;
    line-height: calc(48px * 1.5);
    font-family: var(--font-1);
    font-optical-sizing: auto;
}

.header-2 {
    font-size: 32px;
    line-height: calc(32px * 1.5);
    font-family: var(--font-1);
    font-optical-sizing: auto;
}

.header-3 {
    font-size: 22px;
    line-height: calc(22px * 1.5);
    font-family: var(--font-1);
    font-optical-sizing: auto;
}

.body-1 {
    font-size: 16px;
    line-height: calc(16px * 1.5);
    font-family: var(--font-2);
    font-optical-sizing: auto;
}

.body-2 {
    font-size: 12px;
    line-height: calc(12px * 1.5);
    font-family: var(--font-2);
    font-optical-sizing: auto;
}
/* End Font Declaration */

@media only screen and (max-width: 767.98px) {
    .header-1 {
        font-size: 24px;
        line-height: calc(24px * 1.5);
    }

    .header-2 {
        font-size: 20px;
        line-height: calc(20px * 1.5);
    }

    .header-3 {
        font-size: 16px;
        line-height: calc(16px * 1.5);
    }

    .body-1 {
        font-size: 14px;
        line-height: calc(14px * 1.5);
    }

    .body-2 {
        font-size: 10px;
        line-height: calc(10px * 1.5);
    }
}
