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

body {
  margin: 5vw;
  align-items: center;
}




h1 {
  text-align: center;
  color: #00f000;
  font-family: 'Migra';
  font-size: 10vw;
  letter-spacing: 0px;
  /* font-variation-settings: 'wght' 1000;  */
  animation: myh1 1s ease-out infinite alternate;
}

h2 {
  position: relative;
  text-align: center;
  bottom: 5vh;
  color: #00f000;
  font-family: 'Acumin';
  font-size: 10vw;
  /* font-variation-settings: 'wght' 500, 'wdth' 50, 'slnt' 0;  */
  text-transform: uppercase;
  animation: myh2 1s ease-in-out infinite alternate;
}



@keyframes myh1 {
  0% { 
    font-variation-settings: 'wght' 100; 
    letter-spacing: 0px;

  }

  100% {
    font-variation-settings: 'wght' 1000; 
    letter-spacing: 4px;

  }
}

@keyframes myh2 {
  0% {   font-variation-settings: 'wght' 100, 'wdth' 50, 'slnt' 0; }
  100% {   font-variation-settings: 'wght' 900, 'wdth' 115, 'slnt' 12; }
}


#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;
}