.players {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-direction: row;
  text-align: center;
  margin-top: 10rem;
  height: 13rem;
  animation: fadeIn 1s ease forwards;
}

.player-input-names,
.players {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-top: 5rem;
}

.player1-input::placeholder,
.player2-input::placeholder {
  /* color: 5A5A5A; */
  color: #ff0000;
  font-size: 15px;
}

.player1-input--name {
  animation: fadeIn 1s ease forwards;
}

.player1,
.player2 {
  padding: 1rem 10rem;
}

.players h1,
.players p {
  text-align: center;
}

.players h1 {
  color: #fff;
  font-weight: 300;
  font-size: 3rem;
}

.players p {
  color: #fff;
  font-weight: 300;
  font-size: 2rem;
}

.players img {
  width: 100px;
  height: 100px;
  border-radius: 10%;
  box-shadow: 2px 5px 10px rgba(0, 0, 0, 0.4),
    -2px -2px 4px 2px rgba(225, 225, 225, 0.4);
}

.player-input-names {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 3rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.player-input-names input {
  padding: 1rem;
  border: none;
  border-radius: 10px;
  width: 60%;
  /* background-color: #333; */
  background-color: #fff;
  color: rgba(0, 0, 0, 10);
  font-size: 1.8rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.player-input-names input:focus {
  outline: none;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
  /* box-shadow: 0 0 20px rgba(0, 0, 0, 0.5); */
}

.active--player {
  padding: 1rem 10rem;
  /* outline: 4px solid #79367e; */
  box-shadow: 0 0 10px 10px rgba(0, 0, 0, 0.5),
    inset 0 0 5px 5px rgba(0, 0, 0, 0.3);
  /* background-image: linear-gradient(to top left, #753682 0%, #bf2e34 100%); */
  border-radius: 20%;
  color: white;
  font-size: 2rem;
  font-weight: bold;
  text-transform: uppercase;
  transition: all 0.4s ease;
  backdrop-filter: blur(0px);
  background-color: rgba(225, 225, 225, 0.5);
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(225, 225, 225, 0.3);
}

.active--player:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px 10px rgba(0, 0, 0, 0.6),
    inset 0 0 10px 10px rgba(0, 0, 0, 0.4);
}
