* {
  box-sizing: border-box;
}

body {
  display: flex;
  flex-wrap: wrap;
  padding: 0 70px;
}

main {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80%;
  margin: 0 auto;
  flex-wrap: wrap;
}

.alert {
  width: 145px;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #45ee2f;
  border-radius: 13px;
  font-size: 16px;
  color: white;
  position: fixed;
  right: 14px;
  top: 14px;
  transform: translateX(160px);
  transition: 1.34s;
}

.hidden {
  display: none !important;
}

.game-over {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  z-index: 5;
  background: rgba(0, 0, 0, 0.2196078431);
  flex-direction: column;
  gap: 16px;
}
.botalert {
  top: 100px;
  background: red;
}

.transform {
  transform: translateX(0px);
}

/* Score style */
#result {
  flex: 1 100%;
}

#round-message,
#score {
  text-align: center;
}

#round-message {
  font-size: 1.5em;
  text-transform: capitalize;
}

#score {
  font-size: 3em;
  margin-bottom: 10px;
}

/* Player style */
.players {
  display: inline-flex;
  flex-wrap: wrap;
  flex: 1;
  padding: 10px 25px;
  position: relative;
  z-index: 4;
}

.selected-option,
.name,
.available-options {
  display: inline-flex;
  flex: 1 100%;
  padding: 15px 0;
}

.selected-option,
.name {
  justify-content: center;
}

.name {
  font-size: 1.8em;
  color: #f44336;
  font-weight: 600;
}

/* Options Style */
.available-options {
  justify-content: space-between;
}

.option {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 75px;
  height: 75px;
  padding: 10px;
  border-radius: 50%;
  border: 1px solid #f44336;
  box-shadow: 0 0 3px;
  cursor: pointer;
}

.option.active {
  border-color: blue;
}

.option:hover > img {
  transform: scale(1.1);
}

.option > img {
  width: 70%;
  transition: all 0.2s ease;
}

.selected-option > .option {
  width: 110px;
  height: 110px;
}

/* Rotate the scissor of second player */
#player2 .option > img[alt=Scissor] {
  transform: rotate(180deg);
}

#player2 .option:hover > img[alt=Scissor] {
  transform: rotate(180deg) scale(1.1);
}

#player2 .option {
  cursor: not-allowed;
  background-color: #80cbc4;
}

/* Reset button */
.reset {
  display: inline-flex;
  flex: 1 100%;
  justify-content: center;
  margin-top: 20px;
  position: relative;
  z-index: 4;
}

.reset > span {
  font-size: 1.8em;
  cursor: pointer;
  border: 1px solid red;
  padding: 10px 15px;
  background-color: #f44336;
  box-shadow: 0 0 3px;
  color: #fff;
  transition: all 0.2s ease;
}

.reset > span:hover {
  color: #000;
}/*# sourceMappingURL=style.css.map */