:root {
  font-size: 100%;
}

/* Violet #a023e6 */
/* Grün #00f000 */
/* Antarctica wdth 1-200, wght 1-950 */

body {
  height: 100vh;
  background-color: #00f000;
  overflow: hidden;
  /* margin: 2vh; */
}


#grid-container {
  height: 100vh;
  margin: 2vw 2vw;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 30vh);
  grid-row-gap: 2vh;
  grid-column-gap: 2vh;
  justify-content: center;
  align-items: center;
  justify-items: center;
}

section {
  height: auto;
  width: 100%;
  transform: scale(1.0);
  transition: all .5s ease-out;
}

#novo-text {
  font-family: 'Migra';
  font-variation-settings: 'wght' 800;
  text-align: center;
  color: #a023e6;
  font-size: 14vw;
}

#futebol-text {
  font-family: 'Antarctica';
  font-variation-settings: 'wght' 500, 'wdth' 5;
  text-transform: uppercase;
  text-align: center;
  color: #a023e6;
  font-size: 24vh;
}



#novo-text {
  display: grid;
  justify-items: center;
  justify-content: center;
  align-items: center;
  justify-self: center;
  transform: scale(1.0);
  transition: all .5s ease-out;
}

#novo-text:hover {
  transform: scale(1.5);
}


#nike {
  display: grid;
  justify-items: center;
  justify-content: center;
  align-items: center;
  justify-self: center;
  transform: scale(1.0);
  transition: all .5s ease-out;
}

#nike:hover {
  transform: scale(1.5);
}

#grid-container:nth-child(12) {
  transform: scale(1.0);
  transition: all .5s ease-out;

}

#grid-container:nth-child(12):hover {
  transform: scale(1.5);
  transition: all .5s ease-out;
animation: name duration timing-function delay iteration-count direction fill-mode;
}


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