.outerScoreContainer {
  display: flex;
  justify-content: center;
  align-items: center;
}
.scoreContainer {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0.5rem;
  flex-wrap: wrap;
  background-color: #1b1536;
  padding: 0.5rem 0.5rem;
  border-radius: 0.7rem;
}

.scoreCard {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  width: 7.5rem;
  height: 3.5rem;
  border: 2px solid rgba(255, 255, 255, 0.61);
  border-radius: 0.5rem;
  margin: 0.5rem;
  border-color: #6a6a9e8e;
}

#x {
  border-color: #00ffa3;
}

.xIcon {
  margin-left: 1rem;
  font-size: 2.3rem;
  font-family: "Poppins", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ff4fcb;
}

.dIcon {
  margin-left: 1rem;
  font-size: 2.3rem;
  font-family: "Poppins", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #4fdfff;
}

.oIcon {
  margin-left: 1rem;
  font-size: 2.3rem;
  font-family: "Poppins", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffdc60;
}

.count {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  background-color: #0e0a28;
  height: 100%;
  width: 3.8rem;
  border-radius: 0.5rem;
}

@media (max-width: 366px) {
  .scoreCard {
    width: 2.5rem;
    height: 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .oIcon,
  .xIcon,
  .dIcon {
    font-size: 1.5rem;
    margin-left: 0;
  }

  .count {
    font-size: 1.4rem;
    width: 100%;
    border-radius: 0.4rem;
  }
}

@media (max-width: 560px) {
  .scoreCard {
    width: 3.5rem;
    height: 5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .oIcon,
  .xIcon,
  .dIcon {
    font-size: 1.5rem;
    margin-left: 0;
  }

  .count {
    width: 100%;
  }

  .card {
    gap: 0.5rem;
  }

  .scoreContainer {
    margin-top: 2rem;
    margin-bottom: 3rem;
  }
}

@media (min-width: 1400px) {
  .scoreCard {
    width: 7.5rem;
    height: 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
  }

  .oIcon,
  .xIcon,
  .dIcon {
    font-size: 3.5rem;
    margin: 0.5rem;
  }

  .count {
    width: 100%;
  }

  .card {
    gap: 0.5rem;
  }

  .scoreContainer {
    margin-top: 2rem;
    margin-bottom: 3rem;
  }
}
