html,
body {
  width: 100%;
  height: 100%;
}
body {
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-family: "Inter", sans-serif;
}
header {
  margin-bottom: 75px;
  display: flex;
  flex-direction: column;
  align-self: center;
}
header h1 {
  line-height: 128px;
  font-weight: 700;
  font-size: 128px;
  color: #000000;
}
header h2 {
  line-height: 32px;
  font-weight: 400;
  font-size: 32px;
  color: #000000;
}
footer {
  margin-top: 75px;
  align-self: center;
}
footer p {
  line-height: 14px;
  font-size: 14px;
  text-align: center;
  color: #000000;
}

@media (max-width: 992px) {
  header h1 {
    line-height: 100px;
    font-size: 100px;
  }
  header h2 {
    line-height: 25px;
    font-size: 25px;
  }
}

@media (max-width: 768px) {
  header h1 {
    line-height: 70px;
    font-size: 70px;
  }
  header h2 {
    line-height: 21px;
    font-size: 21px;
  }
}

@media (max-width: 576px) {
  header h1 {
    line-height: 40px;
    font-size: 40px;
  }
  header h2 {
    line-height: 17px;
    font-size: 17px;
  }
}
