* {
  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%);

}

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


a {
  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;
}




}