:root {
  --primary: #fff;
  --secondary: #000;
  --accent: #ffee00;
}

body {
  font-family: "JetBrains Mono", monospace;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  background: var(--primary);
}

nav {
  display: flex;
  justify-content: center;
  margin-top: 5rem;
  margin-bottom: 1rem;
  user-select: none;
  -webkit-user-drag: none;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

main {
  display: flex;
  flex-direction: row;
  justify-items: center;
  font-size: 0.8rem;
}

p {
  color: var(--secondary);
  width: 40%;
  margin: 0 auto;
  text-align: center;
}

footer > ul {
  font-size: 0.8rem;
  list-style-type: none;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

footer > ul > li {
  font-size: x-small;
  font-weight: bold;
  cursor: pointer;
}

footer > ul > li:hover {
  background: var(--accent);
}

footer > ul > li > a {
  text-decoration: none;
  color: var(--secondary);
}
