:root {
  font-size: 100%;
}

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

body {
  margin: 0;
  height: 100vh;
  background-color: #a023e6;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

#novo {
  font-family: 'Antarctica';
  font-size: 20rem;
  color: #00f000;
  font-variation-settings: 'wght' 300, 'wdth' 10;
}


.juggle-o {
   display: inline-block;
  animation: juggle 1s ease-in-out 0s infinite alternate;

}

@keyframes juggle {
  0% {
    transform: translateY(0rem);
    font-variation-settings: 'wght' 300, 'wdth' 10;

  }

  50% {
    transform: translateY(-10rem);
    font-variation-settings: 'wght' 700, 'wdth' 40;
  }

  100% {
    transform: translateY(0rem);
    font-variation-settings: 'wght' 300, 'wdth' 10;

  }
}

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