:root {
  font-size: 100%;
}

body {
  background-color: #a023e6;
  overflow: hidden;
  height: 100vh;
  margin: 1vh;
  font-family: 'Whirly';
  color: #00f000;
}

/* .grid {
  grid-template-columns: repeat(7, 1fr);
  grid-gap: 1rem 1rem;
  justify-items: stretch;

} */

section {
  height: 100vh;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(11, 1fr);
  grid-auto-flow: row;
  align-items: stretch;
  font-size: 5vw;
  text-align: center;
  animation: whirly 1s linear alternate infinite;
}


span {
  transform: scale(1);
  transition: transform .3s ease-out;
}

span:hover {
  transform: scale(1.8);
}


@keyframes whirly {
  0% {
    font-variation-settings: 'anim' 100;
  }

  100% {
    font-variation-settings: 'anim' 200;
  }
}


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