body {
  display: grid;
  place-items: center;
  height: 100vh;
  background-color: black;
  margin: 0;
  overflow: hidden;
}

h1 {
  font-family: 'Space Mono', monospace;
  font-size: clamp(3rem, 10vw, 10rem);
  color: white;
  border-radius: clamp(0.9rem, 0.75vw, 1rem);
}

h2 {
  font-family: 'Space Mono', monospace;
  color: white;
  margin-bottom: 6rem; /* Adjust this value as needed */
}

h4 {
  font-family: 'Space Mono', monospace;
  color: white;
}

a {
  text-decoration: none;
}

a h1 {
  margin: 5px 0;
}

h1:hover {
  background-color: white;
  color: black;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
