:root {
  --font-stack: "Jetbrains Mono", "Source Code Pro", monospace; 
  --accent: #ff002a;
}

body {
  font-family: var(--font-stack);
  background-color: black;
  color: white;

  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  overflow: hidden;
}

main {
  padding: 2rem;
  width: 30%;
  text-align: left;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  color: var(--accent);
}
h2 {
  font-size: 1.5rem;
}

a {
  color: white;
  text-decoration: underline dotted;

  transition: color 0.2s ease-in-out;
}
a:visited {
  color: white;
}
a:hover {
  color: cornflowerblue;
  text-decoration: underline;

  transition: color 0.2s ease-in-out;
}

.footer {
  color: var(--accent);
}
.footer a {
  color: var(--accent);
}

hr {
  border: 1px solid white;
}

.code {
  color: #eeeeee;
  font-family: monospace;

  text-decoration: underline dotted;
}

@media only screen and (max-width: 600px) {
  main {
    width: 90%;
  }
}
