.players {
  display: flex;
  gap: 1%;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 420px;
}

.players__card {
  background-image: url("../images/misc/backdrop.jpg");
  background-repeat: no-repeat;
  width: 320px;
  height: 420px;
  border-radius: 11px;
  box-shadow: 0px 0px 5px #1e1e1e;
  transition: opacity 0.4s ease-in-out;
  position: relative;
  overflow: hidden;
}

.players__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.players__card.unfocus {
  opacity: 0.1;
}

.players__name {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 32px;
  width: 100%;
  padding-top: 30px;
  padding-bottom: 25px;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0,
    rgba(0, 0, 0, 0.65) 100%
  );
  text-shadow: 0 0 2px #000;
  font-family: "Rubik", sans-serif;
  font-weight: 700;
}

.about {
  margin-top: 50px;
}

.about__headline {
  text-align: center;
  font-size: 64px;
  font-family: "Sansation", sans-serif;
}

.about__context {
  font-size: 22px;
  line-height: 1.5;
  text-align: center;
  color: #d9d9d9;
  padding: 0 5%;
}
