/* background, scroll, header stuff */
:root {
  overscroll-behavior: none;
}

html {
    background-color: #0F0F0F;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 100%;
    background-attachment: fixed;
}

body {
    padding: 0;
    margin: 0;
}

nav {
    margin-left: 80px;
}

nav ul {
    display: flex;
    margin: 0;
    padding: 0;
    list-style-type: none;
}

a {
    color: white;
    text-decoration: none;
    font-family: sans-serif;
    width: 194px;
    display: inline-block;
    cursor: pointer;
}

a:hover {
    background-color: white;
    color: black;
}

a.active {
    transform: translateY(20px);
}

/* main content */

h1, h2 {
    font-weight: normal;
    font-family: serif;
    /*font-size: 96px; */
    font-size: 10px;
    color: white;
    background-color: black;
    margin: 0;
    line-height: 16px;
}

h1 span {
    font-weight: bold;
    font-style: italic;
}

p {
    color: white;
    background-color: black;
    margin: 0;
    margin-top: 8px;
    /* font-size: 56px; */
    font-size: 10px;
    font-family: sans-serif;
    line-height: 16px;
}

main {
    margin-left: 80px;
    margin-top: 120px;
    display: flex;
    gap: 194px;
}

main section, main article {
    max-width: 194px;
}