#jugadores-title {
  font-family: 'Open Sans', sans-serif;
  text-align: center;
}

#filtro-container {
  display: grid;
  margin-bottom: 1.5rem;
  grid-template-columns: repeat(8, 1fr);
  column-gap: 4px;
}

#filtro-container > button {
  width: 100%;
  border-radius: 0px;
}

#jugadores-table {
  width: 100%;
  border-collapse: collapse;
}

#filtro-nombre {
  width: 100%;
  margin-bottom: 1rem;
}

#jugadores-table thead {
  background-color: var(--e-global-color-accent);
  color: var(--e-global-color-astglobalcolor5);
}

.pub_image_title_container {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 1080px) {
  #filtro-container {
    grid-template-columns: repeat(4, 1fr);
    row-gap: 4px;
  }
}

@media (max-width: 420px) {
  #filtro-container {
    grid-template-columns: repeat(2, 1fr);
  }

  #filtro-container button {
    width: 100%;
  }
}

.pub_golden_coin {
  background-color: var(--ast-global-color-0);
  width: 200px;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin-bottom: 1.5rem;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
}

#title-image {
  width: 90%;
  height: 90%;
  border-radius: 50%;
  animation: zoom 2s infinite alternate;
}

@keyframes zoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.1);
  }
}