@import url("https://fonts.googleapis.com/css2?family=Roboto+Mono&display=swap");

html,
body {
  box-sizing: border-box;
  height: 100%;
  font-family: "Roboto Mono", monospace;
  overflow: hidden;
}

body {
  background-color: #282c34;
  color: #fff;
}

h1 {
  text-align: center;
}

#app {
  width: 80%;
}

img {
  width: 100px;
}

.selected {
  transform: scale(1.2);
  -moz-transform: scale(1.2); /* Firefox */
  -webkit-transform: scale(1.2); /* Chrome - Safari */
  -o-transform: scale(1.2); /* Opera */
  -ms-transform: scale(1.2); /* IE9 */
  box-shadow: 0px -1px 34px 8px rgba(0, 0, 0, 0.64);
  -webkit-box-shadow: 0px -1px 34px 8px rgba(0, 0, 0, 0.64);
  -moz-box-shadow: 0px -1px 34px 8px rgba(0, 0, 0, 0.64);
  border: 2px solid white;
}

.hide {
  display: none;
}

button {
  border-radius: 20px;
  border: 4px solid black;
  margin-right: 14px;
}

#rock1,
#rock2 {
  background-color: rgb(0, 121, 121);
}
#paper1,
#paper2 {
  background-color: rgb(136, 13, 13);
}

#scissors1,
#scissors2 {
  background-color: #8bb157;
}

.result__container{
  text-align: center;
  height: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 30px;
}

.result__container span{
  color: #A810EA;
}

.button_play{
  margin-top: 100px!important;
}