html,
body {
  font-family: "Helvetica";
  color: #fff;
  line-height: 1.25;
  font-size: 22px;
}

h1 {
  margin-bottom: 2rem;
  font-size: 20vw;
  font-weight: bold;

  grid-area: header;
}

a {
  color: inherit;
}

p {
  margin-bottom: 2rem;
}

.wrapper {
  background: #333;
  min-height: 100vh;
  width: 100%;
  padding: 2rem;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.center-headline {
  height: 100%;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

footer {
  margin-top: auto;
  font-size: 0.7rem;
  grid-area: copyright;

  display: flex;
  justify-content: space-between;
}

@media only screen and (max-width: 1000px) {
}

@media only screen and (max-width: 600px) {
  html,
  body {
    font-size: 16px;
  }
  footer {
    flex-direction: column-reverse;
    gap: 0.5em;
  }
}
