.player-grid {
  display: flex;
  padding: 100px 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 48px;
  background: linear-gradient(180deg, rgba(16, 168, 103, 0) 0%, #10a867 100%), var(--Contrast-Green, #003a29);
}
.player-grid h1 {
  color: var(--Go-Green, #00e677);
  text-align: center;
  font-family: Libre Franklin;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.4px;
}
.player-grid ul {
  display: grid;
  list-style: none;
  width: 90vw;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 48px 40px;
  justify-items: center;
}
.player-grid ul li {
  height: 0;
  transform: translateY(150px);
}
.player-grid ul li.already-visible {
  height: unset;
  transform: translateY(0);
  animation: none;
}
.player-grid ul li.slide-in {
  height: unset;
  transform: translateY(150px);
  animation: come-in 0.8s ease forwards;
}
@keyframes come-in {
  to {
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .player-grid h1 {
    color: var(--Go-Green, #00e677);
    font-family: Libre Franklin;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.32px;
  }
}

/*# sourceMappingURL=playerGrid.css.map */
