* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  width: 100vw;
  height: 100vh;
  font-family: "Akkurat Mono";
  overflow: hidden;
}

nav,
footer {
  position: fixed;
  left: 0;
  width: 100vw;
  padding: 2em;
  display: flex;
  justify-content: space-between;
  z-index: 2;
}

nav {
  top: 0;
}

footer {
  bottom: 0;
}

a,
p {
  text-decoration: none;
  text-transform: uppercase;
  color: #fff;
  font-size: 12px;
}

.nav-items:nth-child(2) {
  display: flex;
  justify-content: flex-end;
  opacity: 0.5;
}
