/* general changes */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: var(--text-body);
    font-family: var(--font-body);
}

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

a:hover {
    border-bottom: 1px solid var(--accent);
}

h1 {
    font-size: 40pt;
    margin: 16px;
}

h2 {
    font-size: 32pt;
}

h3 {
    font-size: 24pt;
}

h1,
h2,
h3,
h4 {
    color: var(--text-main);
    font-family: var(--font-display);
}

html,
body {
    background-color: #201010;
}

/* helpers*/
.vertical-separator {
    width: 1px;
    height: 32px;
    margin: 0;
    background-color: var(--text-body);
    opacity: 0.5;
}

/* nav */
nav {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 20px;

    width: fit-content;
    height: fit-content;
    padding: 12px 24px;
    background-color: #303030a0;
    border: 1px solid #50505060;
    border-radius: 999px;
    backdrop-filter: blur(16px);
}

nav a {
    color: var(--text-body);
    transition: color 0.2s ease-out;
}
nav a:hover {
    color: var(--accent);
}

nav h2,
nav h2 a {
    font-family: var(--font-display);
    font-size: 20pt;
    font-weight: 500;
    color: var(--text-main);
}

nav h2 a:hover {
    color: #fff;
    border: none;
}
