:root {
  font-size: 100%;
}

body {
  background-color: #a023e6;
  overflow: hidden;
  height: 100vh;
  display: flex; 
  justify-content: center;
  align-items: center;
  animation: gradient-animation 5s ease-in-out alternate-reverse infinite;
}

.gradient-background {
  background: linear-gradient(157deg,#a023e6,#4e007a);
  background-size: 120% 120%;
  animation: gradient-animation 20s ease infinite;
}

@keyframes gradient-animation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

p {
  position: absolute;
  font-size: 120rem;
  line-height: 0;
  text-align: center;
  color: #00f000;
  font-family: 'Migra';
  filter: blur(4px);
  font-variation-settings: 'wght' 900;
  animation: lava 5s ease-in-out 0s alternate infinite;
  mix-blend-mode: hard-light;
}

@keyframes lava {
  0% {  
    font-variation-settings: 'wght' 900;
    filter: blur(100rem);
    transform: scale(1);
  }

  100% {
    font-variation-settings: 'wght' 100;
    filter: blur(100rem);
    transform: scale(2);
  }
}

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

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' 100, 'wdth' 1, 'ital' 0;
    transform: scale(1);
    transform-origin: bottom;

  }

  100% {
    font-variation-settings: 'wght' 700, 'wdth' 1, 'ital' 12;
    transform: scale(1.3);
    transform-origin: bottom;

  }

}


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