:root {
  font-size: 100%;
}

/* Violet #a023e6 */
/* Grün #00f000 */

body {
  margin: 2.75vh 0 1vh 0;
  height: 100vw;
  background-color: #a023e6;
  overflow: hidden;
  /* margin: 0vw -2vw; */
  display: grid;
  grid-template-columns: repeat(8, auto);
  grid-template-rows: 22vh 22vh 22vh 22vh 22vh;  
  grid-gap: 0 0;
  justify-items: center;
  align-items: center;

}


.novo {
  font-family: 'Antarctica';
  font-size: 16.5vw;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px #00f000;
  font-variation-settings: 'wght' 300, 'wdth' 5;
}


#juggle-o {
  display: inline-block;
  animation: juggle 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) alternate infinite;
  animation-delay: 1s;

}

@keyframes juggle {

  0% {
    transform: translateY(0vh);
    font-variation-settings: 'wght' 300, 'wdth' 5;
  }

  100% {
    transform: translateY(-22vh);
    font-variation-settings: 'wght' 300, 'wdth' 5;
    color: #00f000;
  }

}

.letter-o {
  display: inline-block;
  animation-delay: 0s;
  animation: move 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) alternate infinite;
}

@keyframes move {

  0% {
    transform: translateY(0vh);
    font-variation-settings: 'wght' 300, 'wdth' 5;
    color: #00f000;

  }
  

  100% {
    transform: translateY(-22vh);
    font-variation-settings: 'wght' 300, 'wdth' 5;

  }
}



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