* {
  margin: 0;
  border: 0;
  font-family: 'Courier New', Courier, monospace;
  box-sizing: border-box;
  color: #e6e2e2;
}

.container {
  background-color: #2f2e2e;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 50px;
  align-items: center;
}


.human, .computer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.middle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  padding: 15px 0px;
}

.notice {
  font-size: 18px;
  text-align: center;
}

.icon {
  font-size: 100px;
  color: #2f2e2e;
}

.player-icon {
  font-size: 150px;
  width: 150px;
  border-radius: 8px;
}

.score {
  font-size: 50px;
  border: 1px solid;
  width: 35px;
}

.icon-btn.active {
  background-color: rgb(52, 80, 236);
  .icon {
    color: #e6e2e2;
  }
}

.computer-icon.active {
  background-color: rgb(190, 23, 23);
  .icon {
    color: #e6e2e2;
  }
}

.player-icon.human, .score.human {
  color: rgb(52, 80, 236);
}

.player-icon.computer, .score.computer {
  color: rgb(190, 23, 23)
}