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

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

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

.novo1 {
  font-family: 'Migra';
  text-align: center;
  line-height: 1;
  font-variation-settings: 'wght' 900;
  font-size: 20vw;
  color: #00f000;
  margin: 0 auto;
  animation: turn 2s ease-in-out alternate infinite;

}

@keyframes turn {
  0% {
    transform: rotate(180deg);
    transform-origin: center;
    font-variation-settings: 'wght' 600, 'wdth' 1;

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

  }
}

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

@keyframes move {
  0% {
    transform: rotate(180deg);
    transform-origin: center;
    font-variation-settings: 'wght' 600, 'wdth' 1;

  }
  100% {
    transform: rotate(360deg);
    font-variation-settings: 'wght' 600, 'wdth' 30;
    color: white;


  }
}




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