.container {
  width: 70%;
  margin: auto;
  text-align: center;
}
.outer {
  display: flex;
  justify-content: center;
  gap: 30px;
}
.player {
  text-align: center;
  display: inline-block;
  position: relative;
}
.winning_counts{
  height: 100%;
  position: absolute;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3%;
}
.winning_counts .count {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #222;
  transition: all 0.5s;
}
.winning_counts .count.on {
  background: rgb(233, 56, 25);
}
.player_left .winning_counts{
  left: 0;
}
.player_right .winning_counts{
  right: 0;
}
.result_text span {
    color: #0077ff;
}
.btn {
  all: unset;
  padding: 10px 16px;
  border-radius: 20px;
  background-color: #0077ff;
  box-shadow: 5px 5px 0 #232931;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  transition: background-color 0.2s;
}
.btn:hover {
  background-color: #2233cf;
}
.btn:active {
  background-color: #8d2213;
}
.win .player{
  color: #0077ff;
  font-weight: 900
}
.win img {
  opacity: 1;
}
body {
  background-color: rgb(63, 65, 85);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

h1 {
  margin: 30px;
  text-shadow: 5px 0 #31232d;
  font-size: 5rem;
  color: #ddd;
}
h3 {
  color: #ddd;
}
p {
  font-size: 2rem;
  color: #ddd;
}
img {
  width: 80%;
  opacity: 0.5;
  transition: opacity 0.1s;
}

footer {
  margin-top: 5%;
  color: #EEEEEE;
  text-align: center;
}
