:root {
  font-size: 100%;
}

body {
  background-color: #a023e6;
  overflow: hidden;
  margin: 1vh;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background: url('/images/Eggy_wave.gif') repeat center center fixed;
  background-size: cover;
}

div {
  display: grid;
}


h1 {
  position: absolute;
  color: #a023e6;
  font-family: 'Migra';
  text-align: center;
  font-size: 20rem;
  line-height: 0;
  font-variation-settings: 'wght' 900;
  mix-blend-mode: hard-light;
}


.grid-futebol {
  grid-template-columns: repeat(7, 1fr);
  align-content: end;
  height: 100vh;
  color: #a023e6;
  font-family: 'Gravity';
  font-size: 20rem;
  line-height: 1;
  font-variation-settings: 'wght' 900, 'wdth' 50;
}

span {
  animation: fut-animation 1s ease-in-out alternate infinite;

}

.letter-f {
  animation-delay: 0.0s;
  justify-self: center;
}

.letter-u {
  animation-delay: 0.1s;
  justify-self: center;
}

.letter-t {
  animation-delay: 0.2s;
  justify-self: center;
}

.letter-e {
  animation-delay: 0.3s;
  justify-self: center;
}

.letter-b {
  animation-delay: 0.4s;
  justify-self: center;
}


.letter-o {
  animation-delay: 0.5s;
  justify-self: center;
}

.letter-l {
  animation-delay: 0.6s;
  justify-self: center;
}

@keyframes fut-animation {

  0% { 
    font-variation-settings: 'wght' 400, 'wdth' 50;
    transform: scale(1);
    transform-origin: bottom;

  }

  100% {
    font-variation-settings: 'wght' 700, 'wdth' 60;
    transform: scale(1.4);
    transform-origin: bottom;

  }

}





/* .wave-text {
  display: flex;
  gap: 5px;
  font-size: 3rem;
  font-weight: bold;
  text-transform: uppercase;
}

.wave-text span {
  display: inline-block;
  animation: wave 1.5s ease-in-out infinite;
  transform-origin: bottom center;
}

@keyframes wave {
  0%, 100% {
      transform: scaleY(1);
  }
  50% {
      transform: scaleY(1.5);
  }
}

.wave-text span:nth-child(1) {
  animation-delay: 0s;
}

.wave-text span:nth-child(2) {
  animation-delay: 0.1s;
}

.wave-text span:nth-child(3) {
  animation-delay: 0.2s;
}

.wave-text span:nth-child(4) {
  animation-delay: 0.3s;
}

.wave-text span:nth-child(5) {
  animation-delay: 0.4s;
}

.wave-text span:nth-child(6) {
  animation-delay: 0.5s;
}

.wave-text span:nth-child(7) {
  animation-delay: 0.6s;
} */



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