html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

/* Page styling */
body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: "Courier New", monospace;
  background-color: #171717;
  color: #fff8e7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding: 20px;
  box-sizing: border-box;
}

/* Links */
a {
  color: #1999af;
  text-decoration: none;
}

a:visited {
  color: #a78fc8;
}

a:hover {
  color: #eb620e;
}

/* Headings */
h1 {
  font-size: 2rem;
  margin-bottom: 20px;
}

p {
  margin: 10px 0;
}

/* Image */
img {
  max-width: 90%;
  height: auto;
  margin: 20px 0;
}
