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

body {
  background: #8cc461;
}

.score-container {
  z-index: 1;
  display: flex;
  min-width: 45%;
  margin: 30px auto;
  border: 2px solid white;
  width: fit-content;
  justify-content: space-between;
  padding: 20px;
  border-radius: 13px;
}

.score-container-text {
  font-size: 30px;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
  color: #ffffff;
}

.score-container-score {
  display: flex;
  text-align: center;
  font-weight: 600;
}

.score-container-score div {
  width: 139px;
  height: 128px;
  background: #ffffff;
  border-radius: 10px;
  font-family: "Quicksand", sans-serif;
}

#c-score {
  margin-right: 20px;
}

#computer-score {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-size: 70px;
  font-weight: 700;
}

#player-score {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 70px;
  font-weight: 700;
}

.options-container {
  min-width: 30%;
  margin: 0 auto;
}

#triangle-side1 {
  position: absolute;
  width: 120px;
  border: 7px solid rgba(0, 0, 0, 0.64);
  transform: rotate(60.58deg);
  bottom: 30vh;
  left: 42vw;
  z-index: -1;
}

#triangle-side2 {
  position: absolute;
  width: 120px;
  border: 7px solid rgba(0, 0, 0, 0.64);
  transform: rotate(120deg);
  bottom: 30vh;
  left: 48vw;
  z-index: -1;
}

#triangle-side3 {
  position: absolute;
  width: 133px;
  border: 7px solid rgba(0, 0, 0, 0.64);
  bottom: 39vh;
  left: 45.5vw;
  z-index: -1;
}

.stone {
  z-index: 100;
  position: absolute;
  border: 16px solid #007486;
  filter: drop-shadow(-1px 1px 11px rgba(0, 0, 0, 0.35));
  width: 110px;
  height: 110px;
  border-radius: 50%;
  left: 40vw;
  bottom: 35vh;
  /* background-image: url(./assets/noun-rock-88661.png); */
}

.scissors {
  position: absolute;
  border: 16px solid #bd00ff;
  filter: drop-shadow(-1px 1px 11px rgba(0, 0, 0, 0.35));
  width: 110px;
  height: 110px;
  border-radius: 50%;
  left: 52%;
  bottom: 35vh;
  /* background-image: url(./assets/noun-scissors-88666.png); */
}
.paper {
  position: absolute;
  border: 16px solid #ffa943;
  filter: drop-shadow(-1px 1px 11px rgba(0, 0, 0, 0.35));
  width: 110px;
  height: 110px;
  border-radius: 50%;
  left: 46.5vw;
  bottom: 13vh;
  /* background-image: url(./assets/noun-paper-88662.png); */
}

.same-selection {
  position: absolute;
  left: 45vw;
  bottom: 55vh;
  color: #ffffff;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.1em;
  font-family: "Quicksand", sans-serif;
}

.pc-choice {
  position: absolute;
  left: 60vw;
  bottom: 40vh;
  color: #ffffff;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.1em;
  font-family: "Quicksand", sans-serif;
}

.player-choice {
  position: absolute;
  left: 40vw;
  bottom: 40vh;
  color: #ffffff;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.1em;
  font-family: "Quicksand", sans-serif;
}

#rules {
  position: fixed;
  outline: none;
  bottom: 20px;
  right: 30px;
  cursor: pointer;
  padding: 10px;
  font-size: 21px;
  line-height: 25px;
  letter-spacing: 0.1em;
  background: inherit;
  color: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 10px;
  font-family: "Quicksand", sans-serif;
}

.rules-container {
  width: 278px;
  padding: 10px;
  border: 7px solid white;
  position: absolute;
  right: 50px;
  bottom: 80px;
  background: #004429;
  border-radius: 13px;
}

#cross-button {
  width: 50px;
  height: 50px;
  position: absolute;
  border: 5px solid #ffffff;
  color: white;
  background: #ff0000;
  font-size: 30px;
  top: -30px;
  right: -20px;
  border-radius: 50%;
  text-align: center;
  font-family: "Quicksand", sans-serif;
  cursor: pointer;
}

.rules-list-container {
  width: 90%;
  margin: 0 auto;
  font-size: 13px;
  font-family: "Quicksand", sans-serif;
}

.rules-container p {
  color: #ffffff;
  font-size: 29px;
  text-align: center;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
}

.rules-container ul {
  text-align: left;
  margin: 0 auto;
}

li {
  margin: 10px;
  list-style-type: square;
  color: #ffd600;
}

ul span {
  color: white;
}

#next {
  position: fixed;
  outline: none;
  bottom: 20px;
  right: 150px;
  cursor: pointer;
  padding: 10px;
  font-size: 21px;
  line-height: 25px;
  letter-spacing: 0.1em;
  background: inherit;
  color: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 10px;
  font-family: "Quicksand", sans-serif;
}

.win-para {
  color: #ffffff;
  display: inline-block;
  font-weight: 600;
  font-size: 39px;
  font-family: "Quicksand", sans-serif;
  text-align: center;
  position: absolute;
  bottom: 40vh;
  left: 44.5vw;
  margin-bottom: -20px;
}

.win-para span {
  font-size: 20px;
}

.win-page-text-container {
  width: 40%;
  position: absolute;
  left: 30vw;
  bottom: 15vh;
  text-align: center;
  font-family: "Quicksand", sans-serif;
  line-height: 70px;
  margin-bottom: 10vh;
}

.win-page-text-container p {
  color: white;
  font-weight: 600;
  font-size: 91px;
}

.win-page-text-container span {
  color: white;
  font-weight: 600;
  font-size: 41px;
}

.trophy-container {
  width: fit-content;
  margin-left: 42.5vw;
  margin-top: 20vh;
}

#star2 {
  position: absolute;
  bottom: 65vh;
  left: 32vw;
}

#star1 {
  position: absolute;
  bottom: 55vh;
  left: 40vw;
}

#star3 {
  position: absolute;
  bottom: 60vh;
  left: 60vw;
}

#star4 {
  position: absolute;
  bottom: 75vh;
  left: 40vw;
}

#star5 {
  position: absolute;
  bottom: 80vh;
  left: 55vw;
}

.play-again {
  position: fixed;
  outline: none;
  bottom: 20vh;
  left: 45vw;
  cursor: pointer;
  padding: 10px;
  font-size: 21px;
  line-height: 25px;
  letter-spacing: 0.1em;
  background: #ffffff;
  color: #000000;
  border: 1px solid #ffffff;
  border-radius: 10px;
  font-family: "Quicksand", sans-serif;
}

/* COMPUTER WIN */

.computer-win-text-container {
  color: #ffffff;
  display: inline-block;
  font-weight: 600;
  font-size: 39px;
  font-family: "Quicksand", sans-serif;
  text-align: center;
  position: absolute;
  bottom: 40vh;
  left: 43.5vw;
  margin-bottom: -20px;
}

.computer-win-text-span {
  font-size: 20px;
}

.you-picked {
  position: absolute;
  left: 30vw;
  bottom: 55vh;
  color: #ffffff;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.1em;
  font-family: "Quicksand", sans-serif;
}

.pc-picked {
  position: absolute;
  left: 60vw;
  bottom: 55vh;
  color: #ffffff;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.1em;
  font-family: "Quicksand", sans-serif;
}

/* MATCH DRAWN */
.match-tie-text-container {
  position: absolute;
  left: 29.5vw;
  bottom: 55vh;
  color: #ffffff;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.1em;
  font-family: "Quicksand", sans-serif;
}

.btn:hover {
  overflow: hidden;
  cursor: pointer;
  transform: scale(0.95, 0.95);
}

/* .btn span {
  position: absolute;
  background: #ffffff;
  transform: translate(-50%, -50%);
  pointer-events: none;
  border-radius: 50%;
  animation: animate 1s linear infinite;
} 

 @keyframes animate {
  0% {
    width: 0px;
    height: 0px;
    opacity: 0.5;
  }
  100% {
    width: 500px;
    height: 500px;
    opacity: 0;
  }
} */

@media (min-width: 1800px) {
 #triangle-side1 {
  position: absolute;
  width: 180px;
  border: 7px solid rgba(0, 0, 0, 0.64);
  transform: rotate(60.58deg);
  bottom: 30vh;
  left: 42%;
  z-index: -1;
}

#triangle-side2 {
  position: absolute;
  width: 180px;
  border: 7px solid rgba(0, 0, 0, 0.64);
  transform: rotate(120deg);
  bottom: 30vh;
  left: 45%;
  z-index: -1;
}

#triangle-side3 {
  position: absolute;
  width: 133px;
  border: 7px solid rgba(0, 0, 0, 0.64);
  bottom: 39vh;
  left: 45.5vw;
  z-index: -1;
}
.stone {
  z-index: 100;
  position: absolute;
  border: 16px solid #007486;
  filter: drop-shadow(-1px 1px 11px rgba(0, 0, 0, 0.35));
  width: 110px;
  height: 110px;
  border-radius: 50%;
  left: 41%;
  bottom: 35vh;
}

.scissors {
  position: absolute;
  border: 16px solid #bd00ff;
  filter: drop-shadow(-1px 1px 11px rgba(0, 0, 0, 0.35));
  width: 110px;
  height: 110px;
  border-radius: 50%;
  left: 50%;
  bottom: 35vh;
}
.paper {
  position: absolute;
  border: 16px solid #ffa943;
  filter: drop-shadow(-1px 1px 11px rgba(0, 0, 0, 0.35));
  width: 110px;
  height: 110px;
  border-radius: 50%;
  left: 46%;
  bottom: 13vh;
}
}

@media (min-width: 1900px) {
  .scissors {
  position: absolute;
  border: 16px solid #bd00ff;
  filter: drop-shadow(-1px 1px 11px rgba(0, 0, 0, 0.35));
  width: 110px;
  height: 110px;
  border-radius: 50%;
  left: 50%;
  bottom: 35vh;
}
}