@font-face {
    font-family: 'Manrope';
    src: url('../font/Manrope-Variable.woff2') format('woff2-variations');
    font-weight: 200 800;
    font-display: swap;
    font-style: normal;
}

html {
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    font-weight: var(--font-weight-regular);
    font-size: var(--font-size-base);
    color: var(--color-text);
    background-color: var(--color-white);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: var(--font-weight-bold);
    line-height: 1.2;
    color: var(--color-primary);
}

h1 {
    font-size: var(--font-size-4xl);
}

h2 {
    font-size: var(--font-size-3xl);
}

h3 {
    font-size: var(--font-size-2xl);
}

h4 {
    font-size: var(--font-size-xl);
}

p {
    margin-bottom: var(--spacing-md);
    color: var(--color-text-light);
}

p:last-child {
    margin-bottom: 0;
}

a {
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-accent-green);
}

strong {
    font-weight: var(--font-weight-bold);
}

img {
    height: auto;
}

::selection {
    background-color: var(--color-accent-green);
    color: var(--color-white);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 0;
    background: var(--color-accent-green);
    color: var(--color-white);
    padding: var(--spacing-sm) var(--spacing-md);
    z-index: 9999;
    font-weight: var(--font-weight-semibold);
}

.skip-link:focus {
    top: 0;
}
