@import url('https://fonts.googleapis.com/css2?family=Roboto+Flex:opsz,slnt,wdth,wght,GRAD,XOPQ,XTRA,YOPQ,YTAS,YTDE,YTFI,YTLC,YTUC@8..144,-10..0,25..151,100..1000,-200..150,27..175,323..603,25..135,649..854,-305..-98,560..788,416..570,528..760&display=swap');


:root {
  background-color: #a023e6;
  font-size: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  height: 100vh;
}

body {
  align-items: center;
}




h1 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  color: #00f000;
  font-family: 'Migra';
  font-size: 15vw;
  letter-spacing: 0px;
  font-variation-settings: 'wght' 100; 
  /* animation: myh1 2s ease-out infinite alternate-reverse; */
}

h2 {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  bottom: 0;
  color: #00f000;
  font-family: 'Roboto Flex';
  font-size: 15vw;
  font-variation-settings: 'wght' 200, 'wdth' 50, 'slnt' 0; 
  text-transform: uppercase;
  animation: myh2 2s ease-out infinite alternate-reverse;
}



@keyframes myh1 {
  0% { 
    font-variation-settings: 'wght' 500; 
    letter-spacing: 0px;
    font-size: 15vw;
  }

  100% {
    font-variation-settings: 'wght' 1000; 
    font-size: 25vw;
  }
}

@keyframes myh2 {
  0% {   font-variation-settings: 'wght' 400, 'wdth' 25, 'XTRA' 323;
    font-size: 15vw;
  }
  100% {   font-variation-settings: 'wght' 400, 'wdth' 151, 'XTRA' 603;
    font-size: 15vw;
  }
}





#navigation-buttons {
  position: fixed;
  bottom: 10px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
}

#navigation-buttons a button {
  font-size: 1.5rem;
  font-family: 'Acumin';
  font-variation-settings: 'wght' 800, 'wdth' 50, 'slnt' 0;
  padding: 10px 20px 5px 20px;
  border: 3px solid #fff;
  text-transform: uppercase;
  background-color: transparent;
  border-radius: 40px;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease-out;
}

#navigation-buttons a button:hover {

  font-size: 1.5rem;
  font-family: 'Acumin';
  font-variation-settings: 'wght' 800, 'wdth' 115, 'slnt' 12;
  background-color: #fff;
  color: #a023e6;
}