h1, h2, h3 {
    font-family: 'Syne', sans-serif;
    font-weight: 300;
}

h1 {
    font-size: 4rem;
    margin: 3rem 0;
}

h2 {
    font-size: 3rem;
    margin: 3rem 0 2rem 0;
}

h3 {
    font-size: 2rem;
    margin: 2rem 0 1.5rem 0;
}

h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 2rem 0 1.5rem 0;
}

h1::after, h2::after, h3::after {
    content: "";
    display: block;
    position: absolute;
    height: 0.35rem;
    width: 3.7rem;
    background-color: var(--color-secondary);
}

p {
    font-size: 1.1rem;
    line-height: 1.4;
    margin: 0 0 1rem 0;
}

a:hover {
    cursor: pointer;
    text-decoration: underline;
}

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

p a[target="_blank"]::after, ul a[target="_blank"]::after {
    content: "open_in_new";
    font-family: 'Material Symbols Rounded';
    font-weight: normal;
    font-style: normal;
    line-height: inherit;
    vertical-align: baseline;
    display: inline-block;
    transform: translateY(0.15em);
    margin-left: 0.2em;
    font-size: inherit;
    user-select: none;
}

p a[href^="mailto:"]::after {
    content: "mail";
    font-family: 'Material Symbols Rounded';
    font-weight: normal;
    font-style: normal;
    line-height: inherit;
    vertical-align: baseline;
    display: inline-block;
    transform: translateY(0.15em);
    margin-left: 0.2em;
    font-size: inherit;
    user-select: none;
}

ul, ol {
    margin: 1.5rem 0;
    line-height: 1.4;
    font-size: 1.1rem;
}