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

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


body { 
  font-size: 1.5rem;
  font-family: alte;
}

.box {
  position: absolute;
  width: 90%;
  height: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);

}

h1 {
  position: absolute;
  top: 0.5%;
  padding-top: 2%;
  padding-bottom: 2%;
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}

p {
  width: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}

a {
  font-size: 1.5rem;
  color: white;
  background-color: black;
}

a:hover {
  color: white;
}

a:visited {
  color: white;
}

a:active {
  color: white;
}


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

body {
  font-size: 1.2rem;
}

a {
  font-size: 1.2rem;
}
.box {
  width: 75%;
}



}