:root {
  font-size: 100%;
}

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

body {
  margin: 0;
  height: 100vw;
  background-color: #a023e6;
  overflow: hidden;
  /* margin: 0vw -2vw; */
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-content: flex-start;
}


.novo {
  height: 19.75vh;
  font-family: 'Antarctica';
  font-size: 14.5vw;
  line-height: 1;
  color: #00f000;
  font-variation-settings: 'wght' 500, 'wdth' 10;
}


#juggle-o {
  display:inline-block;
  font-variation-settings: 'wght' 500, 'wdth' 10;
  animation: juggle 1s ease-in-out 1s alternate infinite;
}

@keyframes juggle {

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

  50% {
    transform: translateY(-30vh);
    font-variation-settings: 'wght' 500, 'wdth' 10;

  }

  100% {
    transform: translateY(0);
    font-variation-settings: 'wght' 500, '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;
}