:root {
    --font-size: 16px;
    overscroll-behavior: none;
}

body,
h1,
h2,
h3,
p {
    margin: 0;
    line-height: 1.75;
    text-wrap: pretty;
}

body {
    font-family: "citrine-variable", sans-serif;
    font-variation-settings: "wght" 400;
    font-size: var(--font-size);
}

h1 {
    font-variation-settings: "wght" 800;
    font-size: var(--font-size);
}

h2 {
    font-variation-settings: "wght" 600;
    font-size: var(--font-size);
    color: rgb(219, 135, 0);
}

h3 {
    font-variation-settings: "wght" 600;
    font-size: var(--font-size);
}

a {
    text-decoration: underline dotted;
    font-variation-settings: "wght" 500;
    text-decoration-thickness: 1px;
    cursor: pointer;
    color: black;
    transition: font-variation-settings 0.3s ease;
}

a:hover {
    font-variation-settings: "wght" 800;
}

strong {
    font-variation-settings: "wght" 600;
    color: rgb(155, 94, 255);
}

u {
    text-decoration: dashed;
    text-decoration-line: underline;
    text-decoration-color: rgba(0, 0, 0, 0.5);
    text-decoration-thickness: 1px;
}

hr {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

abbr {
    font-variation-settings: "wght" 400;
    transition: font-variation-settings 0.3s ease;
}

abbr:hover {
    font-variation-settings: "wght" 700;
}

.content {
    box-sizing: border-box;
    display: block;
    width: 50vw;
    height: 100vh;
    padding: 1rem;
    z-index: 10;
}

.inline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.about-text {
    hyphens: none;
    -webkit-hyphens: none;
}

.footer {
    color: rgb(80, 80, 80);
    padding: 1rem;
    text-align: right;
    position: fixed;
    bottom: 0;
    right: 0;

    transition: color 0.3s ease;
    transition: font-variation-settings 0.3s ease;

    z-index: 10;
}

.footer:hover {
    color: black;
    font-variation-settings: "wght" 500;
}

@media (max-width: 1000px) {
    .content {
        width: 100vw;
    }
}

@media (max-width: 768px) {
    :root {
        --font-size: 12px;
    }
}
