html,
body {
  min-height: 100vh;
  margin: 0;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #170202;
  background-image: linear-gradient(to bottom, gray, white, black);
  text-align: center;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  font-style: italic;
}
h1 {
  font-size: 2.5em;
}
p {
  font-size: 1em;
}
a {
  text-decoration: none;
  color: #211233;
}
a:hover {
  text-decoration: underline;
}
@media (max-width: 600px) {
  h1 {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }
  p {
    font-size: clamp(0.8rem, 3vw, 1rem);
  }
}
