@charset "UTF-8";
html {
  width: 100vw;
  height: 100vh;
  box-sizing: border-box;
}
body {
  margin: 0 auto;
  background-color: rgb(28, 46, 77);
  background-image: radial-gradient(
    farthest-side at 50% 25%,
    rgb(31, 54, 86),
    rgb(34, 34, 55)
  );
  font-family: impact, sans-serif;
  background-repeat: no-repeat;
}
h2 {
  font-size: 1.25vw;
}
h3 {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 1vw;
  font-weight: 500;
  color: rgb(61, 92, 136);
}
main {
  width: 100%;
  height: auto;
  margin: 0 auto;
  z-index: 1000;
}
#score-container {
  max-width: 50vw;
  width: 100%;
  height: auto;
  margin: 0 auto;
}
#score-section {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  flex-basis: 50%;
  max-width: 96%;
  width: 100%;
  height: auto;
  margin: 0 auto;
  border: 0.2rem solid;
  border-color: rgba(213, 213, 214, 0.25);
  border-radius: 15px;
  padding: 1vw 1.5vw;
  margin-top: 3%;
}
#logo {
  max-width: 10vw;
  width: 100%;
  height: auto;
}
#scoreCard {
  max-width: 20%;
  width: 175px;
  height: auto;
  padding: 1vw;
  text-align: center;
  border-radius: 10px;
  background-color: whitesmoke;
}
#scoreCard h3 {
  margin-block-end: 0em;
}
#number {
  font-size: 3.5vw;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.7);
}
#options-section {
  display: flex;
  max-width: 50vmin;
  width: 100%;
  height: auto;
  margin: 0 auto;
  margin-top: 15vmin;
}
#options-div {
  display: flex;
  position: relative;
  max-width: 100%;
  width: 100%;
  height: auto;
}
#pentagon-container {
  max-width: 100%;
  width: 100%;
  height: auto;
  margin: 0 auto;
}
#bgPentagon {
  max-width: 100%;
  width: 100%;
  height: auto;
}
.option-btn {
  position: absolute;
  display: flex;
  max-width: 25%;
  max-height: 25%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: white;
  align-items: center;
  z-index: 1;
  background-image: radial-gradient(
    circle at 50% 65%,
    white 68%,
    white 72%,
    rgb(214, 214, 214) 70%
  );
  background: -webkit-radial-gradient(
    circle at 50% 65%,
    white 68%,
    white 72%,
    rgb(214, 214, 214) 70%
  );
  background: radial-gradient(
    circle at 50% 65%,
    white 68%,
    white 72%,
    rgb(214, 214, 214) 70%
  );
  cursor: pointer;
  transition: width 0.5s, height 0.5s;
}
.option-btn:hover {
  max-width: 26%;
  max-height: 26%;
}
.rps {
  max-width: 50%;
  margin: 0 auto;
  cursor: pointer;
}
#scissors {
  margin-left: 32%;
  margin-top: -20%;
}
#paper {
  margin-left: 80%;
  margin-top: 15%;
}
#rock {
  margin-left: 65%;
  margin-top: 70%;
}
#lizard {
  margin-left: 0%;
  margin-top: 70%;
}
#spock {
  margin-top: 15%;
  margin-left: -17%;
}
#options-picked {
  display: none;
  flex-direction: row;
  flex-wrap: nowrap;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  text-align: center;
}
.picked-container {
  display: flex;
  flex-direction: column;
  max-width: 40%;
  width: 100%;
  height: auto;
  align-items: center;
}
.picked-container h3 {
  color: white;
  font-size: 1.5vw;
}
.picked {
  display: flex;
  align-items: center;
  min-width: 10vw;
  min-height: 10vw;
  width: 40%;
  height: auto;
  text-align: center;
  margin: 0 auto;
  border-radius: 50%;
  background-color: white;
  border: 1.5vw solid rgb(0, 192, 218);
  box-shadow: 0vw 0.7vw rgb(0, 150, 170);
  background-image: radial-gradient(
    circle at 50% 65%,
    white 68%,
    white 72%,
    rgb(214, 214, 214) 70%
  );
  background: -webkit-radial-gradient(
    circle at 50% 65%,
    white 68%,
    white 72%,
    rgb(214, 214, 214) 70%
  );
  background: radial-gradient(
    circle at 50% 65%,
    white 68%,
    white 72%,
    rgb(214, 214, 214) 70%
  );
}
.picked-img {
  width: 50%;
  height: auto;
  margin: 0 auto;
}
#outcome-container {
  max-width: 20%;
  height: auto;
  justify-content: center;
}
#playAgain {
  font-size: 1vmax;
  font-weight: 500;
  color: rgb(28, 46, 77);
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  padding: 1vw 2.5vw;
  background-color: white;
  border-radius: 25px;
  cursor: pointer;
  align-self: center;
  white-space: nowrap;
}
#outcome-text {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  color: white;
  font-weight: 500;
  font-weight: bold;
  font-size: 2vw;
  white-space: nowrap;
}
#modal {
  display: none;
  position: absolute;
  width: 100%;
  height: auto;
  top: 0;
  left: 0;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  background-color: rgba(28, 46, 77, 0.5);
}
#rules-details {
  position: relative;
  max-width: 30vmax;
  width: 100%;
  height: auto;
  margin: 0 auto;
  background-color: white;
  border-radius: 7px;
  padding: 2.5% 2.5%;
  margin-top: 5vmin;
}
#heading-div {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: auto;
  align-items: center;
}
#rules-heading {
  width: 100%;
  height: auto;
  font-family: verdana, sans-serif;
  font-size: 85%;
  color: rgb(28, 46, 77);
  margin-block-start: 0;
  margin-block-end: 0;
}
#icon-div {
  width: 100%;
  height: auto;
  cursor: pointer;
  margin-block-start: 0;
  margin-block-end: 0;
}
#svgClose {
  float: right;
}
#close-icon {
  max-width: 100%;
  width: 100%;
  height: auto;
  cursor: pointer;
}
#icon-div:hover path {
  fill: black;
  color: black;
  opacity: 100;
  width: 5vw;
  cursor: pointer;
}
#rules-img {
  max-width: 50vmax;
  width: 100%;
  height: auto;
  margin: 0 auto;
  text-align: center;
}
#rules {
  display: block;
  position: absolute;
  bottom: 5vw;
  right: 20%;
  z-index: 100;
  background-color: transparent;
  border: 1px solid white;
  border-radius: 15px;
  padding: 0.5% 2.5%;
  color: white;
  cursor: pointer;
  font-weight: 500;
}
#rules:hover {
  background-color: white;
  color: rgb(28, 46, 77);
  border: 1px solid rgb(28, 46, 77);
  font-weight: 500;
}
#video-title {
  font-family: verdana, sans-serif;
  font-size: 80%;
  color: rgb(28, 46, 77);
  text-decoration: underline;
  cursor: pointer;
}
#video-title:hover {
  color: gray;
}
#video-container {
  display: none;
  position: absolute;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  z-index: 5000;
}
#videoPlayer {
  max-width: 560px;
  max-height: 315px;
  width: 50%;
  height: 50%;
  margin: 0 auto;
  z-index: 4000;
  top: 50%;
  left: 50%;
}
.attribution {
  position: absolute;
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
  bottom: 0;
}