html{
  width: 100%;
  height: 100%;
}

body{
  width: 100%;
  background-color: #001eb4;
  position: relative;
  font-family: neue-haas-grotesk-display, sans-serif;
  font-weight: 700;
  font-style: normal;
}

*{
  margin: 0;
  padding: 0;
}

h1{
  width: fit-content;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  height: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  font-size: calc(100vw * 80 / 1920);
  text-indent: 0.07em;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (max-width: 768px) {
  h1{
    font-size: calc(100vw * 40 / 414);
  }
}

a{
  color: white;
  text-decoration:none;
}

footer{
  width: 100%;
  color: white;
  position: fixed;
  text-align: center;
  bottom: 24px;
}
