* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  user-select: none;
}

body {
  background-color: #fff;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 14px;
  display: flex;
  flex-direction: row;
  height: 100vh;
  overflow: hidden;
}

main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
}
main .gameStart {
  height: 100%;
  width: 100vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
main .gameStart .select {
  cursor: pointer;
}
main .gameStart .gameSelect {
  position: fixed;
  bottom: 1%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
main .gameStart .gameSelect .changeGame {
  opacity: 0.6;
}
main .gameStart .gameSelect .gameMode {
  margin: 0;
  padding: 0;
  font-size: min(7vw, 16px);
  text-align: center;
  transition: font-size 0s;
  transition-timing-function: ease-out;
  opacity: 0.5;
}
main .gameStart .gameSelect .gameMode:hover {
  transition: 0s;
  transition-timing-function: ease-out;
  opacity: 1;
}
main .selectHand {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  height: 60vh;
  width: 98vw;
}
main .selectHand .selector {
  height: 100%;
  max-width: 20%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
main .selectHand .selector.hide {
  display: none !important;
}
main .selectHand .selector img {
  cursor: pointer;
  border-radius: 35%;
  max-width: 85%;
  max-height: 85%;
  opacity: 0.5;
  transition-timing-function: ease-out;
  -webkit-transition: max-width 0s; /* For Safari 3.1 to 6.0 */
  transition: max-width 0s;
}
main .selectHand .selector img.over {
  max-width: 90%;
  max-height: 90%;
  transition-timing-function: ease-out;
  -webkit-transition: max-width 0s; /* For Safari 3.1 to 6.0 */
  transition: max-width 0s;
  opacity: 1;
}
main .selectHand .selector img.mousedown {
  max-width: 100%;
  max-height: 100%;
  opacity: 1;
}
main .hide {
  display: none;
}
main .result {
  position: absolute;
  z-index: 10;
  width: 100vw;
  height: 110vh;
  opacity: 0.6;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
main .result .win .draw .lose {
  position: relative;
}

.gameEnd {
  height: 100vh;
  width: 100vw;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
}

.halfCPU {
  height: 100%;
  width: 100vw;
}
.halfCPU img {
  opacity: 0.5;
  max-width: 85%;
  max-height: 85%;
  transform: rotate(180deg);
}

.halfPlayer {
  height: 100%;
  width: 100vw;
  display: flex;
  flex-direction: column-reverse;
}
.halfPlayer div {
  display: flex;
  flex-direction: column-reverse;
}
.halfPlayer div img {
  opacity: 0.9;
  max-width: 100%;
  max-height: 100%;
}

/*# sourceMappingURL=style.css.map */
