* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 100%;
  font-weight: normal;
  font-style: sans-serif;
  line-height: 0.7;
}

@font-face {
  font-family: alte;
  src: url('AlteHaasGroteskRegular.ttf');
}

body {
  font-family: alte;
}

.top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
}

.top h1 {

  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  font-size: 1.2rem;
}

.bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
}

.bottom h2 {
  position: absolute;
  left: 50%;
  top: 40%;
  transform: translate(-50%,-50%);
  font-size: 14rem;
  width: 90%;
  text-align: center;
  letter-spacing: -10px;

}

a {
  color: blue;
  background-color: none;
}

a:hover {
  color: blue;
}

a:visited {
  color: blue;
}

a:active {
  color: blue;
}



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

.bottom h2 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  font-size: 6rem;
  width: 70%;
  text-align: center;
  letter-spacing: -1px;
}

}