.team-content{
  grid-template-columns: 1fr;
  grid-template-rows: repeat(3, 100px);
  align-items: center;
  justify-items: center;
  margin-top: 5px;
  margin-bottom: 4%;
  h1{
    color: rgba(60,177,244);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 60px;
  }
}

.team-header > div{
  align-items: center;
  justify-items: center;
  text-align: center;
}
.team-header{
  margin-top: 4%;
  font-size: 10vh;
  font-family: 'PP Neue Corp Wide', serif;
  color: rgba(0,0,0);
  background: rgba(255, 256, 250, .8);
  display: flex;
  padding: 0 0 0 5%;
  width: 100vw;
  transition: all ease 0.3s;
  box-shadow: 0 3px 1px -2px rgba(0,0,0, .9);
}

.team-header img{
  width: 8vw;
  height: auto;
  padding-right: 14px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  transition: all ease 0.3s;
}

.team-grid img{
  height: auto;
  width: 220px;
  transition: all ease 0.3s;
  position: relative;
  z-index: 1;
}

.lightbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 20px;
  max-width: 800px;
  margin: 50px auto;
  overflow: hidden;
}

.grid-item {
  position: relative;
  text-align: center;
  transition: transform 0.2s;
  background: rgb(223, 231, 242);
  box-shadow: 0 8px 8px 0 rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.19);
  overflow: hidden;
  font-family: 'Bebas Neue', sans-serif;
  border-radius: 5px;
}
.player-number {
  position: absolute;
  top: 5px;
  left: 5px;
  padding: 0 10px;
  font-size: 40px;
  color: rgba(0, 0, 205, .7);
  font-family: 'PP Neue Corp Wide', serif;
  z-index: 2;
}

.playerName{
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  padding: 0;
  background-color: rgba(0, 0, 205, .7);
  color: rgba(255,255,255);
  font-size: 17px;
  z-index: 2;
  line-height: .5;
  width: 95%;
  border-radius: 5px;
}

strong{
  color: yellow;
  font-weight: lighter;
}

.Coach-pos{
  color: rgba(60,177,244);
}
