p {
  font-family: monospace, sans-serif, "Press Start 2P";
}

h2 {
  font-family: "Press Start 2P", sans-serif;
}

body {
  background-color: #1c1c1c;
  color: white;
}

.content {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin-left: 25em;
  margin-right: 7em;
  margin-top: 2em;
  padding: 2em;
  box-sizing: border-box;
}

nav {
  display: flex;
  position: fixed;
  flex-direction: column;
  background-color: #25272b;
  height: auto;
  min-height: 100vh;
  width: 23em;
  top: 0;
  left: 0;
  min-width: 180px;
}

nav ul li {
  margin-top: 10%;
  list-style-type: none;
}

nav a {
  text-decoration: none;
  color: white;
}

img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  height: auto;
}

.content h1 {
  font-family: "Press Start 2P", sans-serif;
}

@media (max-width: 900px) {
  .content {
    margin-left: 0;
    margin-right: 0;
    padding: 1em;
  }
  nav {
    position: static;
    width: 100%;
    min-width: 0;
    height: auto;
    min-height: 0;
  }
}

@media (max-width: 600px) {
  .content {
    padding: 0.5em;
    font-size: 0.95em;
  }
  h1,
  h2 {
    font-size: 1.1em;
  }
  p {
    font-size: 0.98em;
  }
  nav ul li {
    margin-top: 1em;
  }
}
