.content {
  font-family: "Space Mono", monospace;
}

.title {
  height: 50px;
  width: 300px;
  color: white;
  font-size: 15px;
  display: flex;
  position: fixed;
  left: 100px;
  top: 200px;
  background: rgba(0, 0, 0, 0.9);
  padding: 0;
  align-items: center;
  justify-content: center;
}

body {
  background-image: url(IMG/BG.jpg);
  background-size: cover;
  image-rendering: pixelated;
}

.nav-list {
  align-self: right;
  list-style: none;
  width: 270px;
  height: 250px;
  color: white;
  display: flex;
  flex-direction: column;
  position: absolute;
  text-align: right;
  left: 100px;
  top: 270px;
  font-size: 15px;

  background-image:
    /* DITHER LAYER */
    repeating-linear-gradient(
      0deg,
      rgba(255,255,255,0.04) 0px,
      rgba(255,255,255,0.04) 1px,
      rgba(0,0,0,0.04) 2px,
      rgba(0,0,0,0.04) 3px
    ),
    /* MAIN GRADIENT */
    linear-gradient(
      to top,
      rgba(0,0,0,0.0) 0%,
      rgba(0, 0, 0, 0.7) 30%,
      rgba(0,0,0,0.9) 100%
    );

  background-blend-mode: overlay;
  padding: 15px;
  margin: 0;
}

.nav-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-list li a {
  text-align: right;
}

.status {
  font-size: 11px;
  opacity: 0.6;
  text-align: left;
  white-space: nowrap;
}

a:link {
  color: white;
  text-align: right;
}

a:visited {
  color: white;
  text-align: right;
}

a:hover {
  color: rgb(17, 17, 17);
  font-style: italic;
  padding: 1px;
  left: 5px;
  text-transform: uppercase;
  background-color: rgb(201, 201, 201);
  text-align: right;
}

a:active {
  color: white;
  text-align: right;
}

.status {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgb(0, 0, 0);
  background-color: rgb(255, 255, 255);
}