* {
  margin: 0;
  padding: 0;
}

html,
body {
  width: 100%;
  height: 100%;
}

.container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #8e8ffa;
}

.result-field {
  width: 80vmin;
  height: 65vmin;
  background-color: #c2d9ff;
  border-radius: 20px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}

.result-images {
  height: 40%;
  user-select: none;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1vmin 10vmin 0 10vmin;

  gap: 20vmin;
}

.result-images img {
  width: 14vmin;
}

.result-images .user_result img {
  transform: rotate(90deg);
}

.result-images .comp_result img {
  transform: rotate(-90deg) rotateY(180deg);
}

.container.start .user_result {
  transform-origin: left;
  animation: userAnim 0.7s ease infinite;
}

@keyframes userAnim {
  50% {
    transform: rotate(10deg);
  }
}
.container.start .comp_result {
  transform-origin: right;
  animation: compAnim 0.7s ease infinite;
}

@keyframes compAnim {
  50% {
    transform: rotate(-10deg);
  }
}

.play-text {
  height: 5%;
  text-align: center;
  user-select: none;
}

.play-text #winText {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 4vmin;
  font-weight: 500;
  color: #5d1919;
}

.play-text #scoreText {
  margin-top: 1vmin;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 3vmin;
  font-weight: 500;
  color: #631414;
}

.options {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
  height: 43%;
  margin-top: 7vmin;
}

.option_image {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}
.option_image:hover {
  cursor: pointer;
  opacity: 1;
}

.option_image.active {
  opacity: 1;
}

.option_image img {
  user-select: none;
  width: 7vmin;
}
.option_image p {
  pointer-events: none;
  margin: 10px 0 0 5px;
  font-size: 3vmin;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  color: #761f1f;
  user-select: none;
}

.container.start .option_image {
  pointer-events: none;
}
