/* Because all images are just for rock paper scissors and should have the same size */
img {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 5px;
    width: 150px;
    height: 150px;
  }

.game-choices {
    margin-left: 25%;
    margin-right: 25%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-around;
}

.score-part-container {
  margin-left: 15%;
  margin-right: 15%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
}

#resultField {
  visibility: hidden;
}

.scores-row {
  margin-top: 4%;
  margin-left: 27%;
  margin-right: 27%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-around;
}

.last-move-container {
  margin-top: 2%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
}

.last-move-board {
  margin-left: 12.9%;
  margin-right: 12.9%;
}
