/* Font Declaration */
.display {
    font-size: 42px;
    line-height: 63px;
    font-family: var(--font-1);
}

.header-1 {
    font-size: 28px;
    line-height: calc(28px * 1.5);
    font-family: var(--font-1);
}

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

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

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

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

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

    .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);
    }
}
