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


.novo1 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center; 
  color: #00f000;
  font-family: 'Migra';
  font-size: 14rem;
  font-variation-settings: 'wght' 800;
  text-align: center;
  animation: move-novo1 1s ease-out 0s infinite alternate;
}

.novo2 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  color: transparent;
  -webkit-text-stroke: #00f000; 
  -webkit-text-stroke-width: 1px; 
  font-family: 'Migra';
  font-size: 14rem;
  font-variation-settings: 'wght' 800;
  text-align: center;
  animation: move-novo2 1s ease-out 0s infinite alternate;
}

@keyframes move-novo1 {

  0% {
    transform: translate(0vh, 0vh);
    
  }

  100% {
    transform: translate(-1vh, -1vh);
  }

}

@keyframes move-novo2 {

  0% {
    transform: translate(0vh, 0vh);
    
  }

  100% {
    transform: translate(+1vh, 1vh);
  }

}


.futebol1 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  color: #00f000;
  font-family: 'DX';
  font-size: 20rem;
  font-variation-settings: 'wght' 500, 'XHGT' 10, 'slnt' 90;
  text-align: center;
  /* animation: move-futebol1 1s ease-out 0s infinite alternate; */
}

.futebol2 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  color: transparent;
  -webkit-text-stroke: #00f000; 
  -webkit-text-stroke-width: 1px; 
  font-family: 'DX';
  font-size: 20rem;
  font-variation-settings: 'wght' 500, 'XHGT' 10, 'slnt' 90;
  text-align: center;
  animation: move-futebol2 1s ease-out 0s infinite alternate;
}

@keyframes move-futebol2 {

  0% {
    font-variation-settings: 'wght' 500, 'XHGT' 10, 'slnt' 90;
    /* transform: translate(0vh, 0vh); */
  }

  100% {
    font-variation-settings: 'wght' 500, 'XHGT' 100, 'slnt' -90;
    /* transform: translate(0vh, 1vh); */

  }
  
}



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