:root {
  font-size: 100%;
}

body {
  background-color: #a023e6;
  overflow: hidden;
  margin: 5vh;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

h1 {
  color: #00f000;
  font-family: 'Migra';
  font-size: 20vh;
  line-height: 1;
  font-variation-settings: 'wght' 100;
}

h1:hover {
  color: #00f000;
  font-family: 'Migra';
  font-size: 20vh;
  line-height: 1;
  font-variation-settings: 'wght' 1000;
  animation: letter-animation1 1s ease-in-out infinite alternate;
}

.letter-animation1 {
  display: flex;
}

.letter-animation1 h1 {
  color: #00f000;
  font-variation-settings: 'wght' 100;
  display: inline-block;
}

@keyframes letter-animation1 {
  0% { 
    font-variation-settings: 'wght' 100;
  }

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


h2 {
  color: #00f000;
  font-family: 'Acumin';
  font-size: 20vh;
  line-height: 1;
  font-variation-settings: 'wght' 100, 'wdth' 50, 'slnt' 0;
}

h2:hover {
  color: #00f000;
  font-family: 'Acumin';
  font-size: 20vh;
  line-height: 1;
  font-variation-settings: 'wght' 115, 'wdth' 115, 'slnt' 0;
  animation: letter-animation2 1s ease-in-out infinite alternate;
}

.letter-animation2 {
  display: flex;
}

.letter-animation2 h2 {
  color: #00f000;
  font-variation-settings: 'wght' 100, 'wdth' 50, 'slnt' 0;
  display: inline-block;
}

@keyframes letter-animation2 {
  0% { 
    font-variation-settings: 'wght' 100, 'wdth' 50, 'slnt' 0;
  }

  100% {
    font-variation-settings: 'wght' 900, 'wdth' 115, 'slnt' 0;
  }
}



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