:root { /* update for this site */
  --bg: hsla(132, 21%, 29%, 1); /* tom-thumb, main bg */
  --elevation: hsla(120, 24%, 38%, 1); /* hippy */
  --muted: hsla(97, 28%, 50%, 1); /* asparagus, dates, captions, disabled text */
  --contrast: hsla(74, 42%, 72%, 1); /* deco, use for text, option to reduce opacity to 85% */
  --accent: hsla(40, 59%, 64%, 1); /* apache, use sparingly */
}

* {
  box-sizing: border-box; /* height & width of all boxes includes padding & border */
}

body {
    background-color: black;
    color: white;

    font-family: "Quantico", sans-serif;
    font-weight: 400;
    font-style: normal;
}

ul.no-bullets {
    list-style-type: none;
}

.nav-container {
  display: flex;

  font-family: "Faster One", system-ui;
  font-weight: 400;
  font-style: normal;

  gap: 5em;
  justify-content: center;
}

.nav-item {
    font-size: 3em;
}

.nav-item:hover {
    color: red;
    font-size: 3em;
}