@import url('https://fonts.googleapis.com/css?family=Press+Start+2P&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

body {
  background-color: #cccccc;
  color: #47433b;
  font-family: 'Press Start 2P', sans-serif;
}
.title {
  text-align: center;
  font-size: 40px;
  margin-top: 10px;
  margin-bottom: 20px;
  color: #e65b69;
}
.points-div {
  margin-top: 10px;
  text-align: center;
  font-size: 21px;
  font-family: inherit;
}

.human-div {
  margin-left: 30px;
  margin-top: 75px;
  height: 120px;
  display: inline-block;
}
.yourChoiceDiv {
  display: inline-block;
  height: 200px;
  width: 200px;
  border: 3px dotted #47433b;
  margin-left: 75px;
}

.vs-div {
  margin-left: 140px;
  display: inline-block;
  margin-right: 140px;
}
.won-div {
  text-align: center;
  margin-top: 25px;
}
.botChoiceDiv {
  display: inline-block;
  height: 200px;
  width: 200px;
  border: 3px dotted #47433b;
  /* margin-left: 140px; */
}

.bot-div {
  margin-left: 75px;
  margin-top: 75px;
  height: 120px;
  display: inline-block;
}

.select-your-option-div {
  text-align: center;
  margin-top: 75px;
  font-size: 20px;
}

.rock-div {
  height: 100px;
  width: 100px;
  border: 3px dotted #47433b;
  margin-left: 489px;
  margin-top: 30px;
  display: inline-block;
}
.paper-div {
  height: 100px;
  width: 100px;
  border: 3px dotted #47433b;
  margin-left: 20px;
  display: inline-block;
}
.scissor-div {
  height: 100px;
  width: 100px;
  border: 3px dotted #47433b;
  margin-left: 20px;
  display: inline-block;
}
