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

div {
  transform: rotate(-90deg);
}

/* .futebol {
  transform: rotate(90deg);
} */

.novo1 {
  font-family: 'Formula';
  text-transform: uppercase;
  text-align: center;
  line-height: 1;
  font-variation-settings: 'wght' 300, 'wdth' 1;
  font-size: 18vw;
  color: #00f000;
  margin: 0 auto;
  animation: turn1 1s ease-out alternate infinite;

}

.futebol1 {
  transform: rotate(180deg);
  font-family: 'Formula';
  text-align: center;
  text-transform: uppercase;
  line-height: 1;
  font-variation-settings: 'wght' 300, 'wdth' 1;
  font-size: 18vw;
  color: #00f000;
  margin: 0 auto;
  animation: turn2 1s ease-out alternate infinite;
}

@keyframes turn1 {
  
0% {
  transform: rotate(0deg);
  font-variation-settings: 'wght' 100, 'wdth' 0;

}

100% {
  transform: rotate(45deg);
  font-variation-settings: 'wght' 800, 'wdth' 100;

}

}

@keyframes turn2 {
  
  0% {
    transform: rotate(0deg);
    font-variation-settings: 'wght' 800, 'wdth' 100;

  }
  
  100% {
    transform: rotate(45deg);
    font-variation-settings: 'wght' 100, 'wdth' 0;


  }
  
  }


  #navigation-buttons {
    position: fixed;
    bottom: 10px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: none;
  }
  
  #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;
  }