@charset "UTF-8";

h1 {
    font-family: var(--font-title);
    font-weight: 400;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--color-text-heading);
    margin: 0.2rem 0 1rem;
    letter-spacing: 1px;
}

h2 {
    font-family: var(--font-base);
    font-weight: 600;
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    color: var(--color-text-heading-alt);
    margin: 1.5rem 0 0.5rem;
}

h3,
h4,
h5,
h6 {
    font-family: var(--font-base);
    font-weight: 600;
    color: var(--color-text-heading);
}

h3 {
    font-size: 1.2rem;
    margin: 1.3rem 0 0.4rem;
}

h4 {
    font-size: 1.1rem;
    margin: 1.2rem 0 0.3rem;
}

h5 {
    font-size: 1rem;
    margin: 1.1rem 0 0.2rem;
    font-weight: 500;
}

h6 {
    font-size: 0.9rem;
    margin: 1rem 0 0.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

p {
    margin: 0.5rem 0;
    hyphens: auto;
    text-align: justify;
    max-width: 80ch;
    line-height: 1.5;
}

section {
    margin-bottom: 1rem;
    /* padding: 0 0.5rem; */
}

a {
    color: var(--color-link);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}