body {
    font-family: var(--font-family);
    font-size: var(--font-size);
    font-weight: var(--font-weight);
}

h1 {
    font-family: var(--font-family-header);
    font-size: 30px;
    font-weight: 600;
    line-height: 126%;
    color: var(--color-text);
    margin-bottom: 15px;
    margin-top: 20px;
}

h2,
h3,
h4 {
    font-weight: 600;
    line-height: 126%;
    color: var(--color-text);
}

p {
    color: var(--color-text-light);
    font-size: var(--font-size);
    font-weight: var(--font-weight);
    line-height: 166%;
}

p a {
    color: inherit;
    transition: all 100ms ease;
}

p a:hover {
    color: var(--color-text);
}

a:focus-visible {
    outline: 1px solid var(--color-primary);
}

/* inter-regular - latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/inter-v13-latin-regular.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* inter-500 - latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/inter-v13-latin-500.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* inter-600 - latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/inter-v13-latin-600.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* inter-700 - latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/inter-v13-latin-700.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}