html, body {
  margin: 0;
}
body {
  font-family: monospace;
  background-color: #121212;
  color: #e0e0e0;
  font-size: 1rem;
}
.content {
  margin-left: 35vw;
  max-width: 70vw;
}
@media (max-width: 768px) {
  .content {
    margin-left: 10vw;
    max-width: 80vw;
  }
  img {
    max-width: 65vw;
  }
}
img {
  max-width: 40vw;
  margin: 10px 0;
  border: 1px solid #444444;

  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
img:hover {
  transform: scale(1.01);
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.3);
}

a {
    color: #3399ff;
    text-decoration: underline dotted;
}
a:visited {
    color: #3399ff;
}
a:hover {
    text-decoration: underline;
}

nav a {
  margin-right: 1rem;
}

.page {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 200ms ease, transform 200ms ease;
}

.page.exit {
  opacity: 0;
  transform: translateY(10px);
}

.page.enter {
  opacity: 0;
  transform: translateY(-10px);
}

hr {
  max-width: 35vw;
  margin: 0;
}
