@import url("https://fonts.googleapis.com/css2?family=Amatic+SC:wght@400;700&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  background-color: #081b29;
  font-family: "Amatic SC", sans-serif;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

body.active {
  background-image: url(../radit.jpeg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.header {
  font-size: 40px;
  margin-top: 50px;
  font-weight: 600;
}

.box-skors {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
}
.box-skors .skors-content {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 20px 0;
  font-size: 30px;
}
.box-skors .skors-content .skors {
  width: 100%;
  text-align: center;
}
.box-skors .skors-content .skors:nth-child(2) {
  border-inline: 2px solid rgb(255, 255, 255);
}

.box-weapon {
  display: block;
  margin-top: 50px;
  text-align: center;
}
.box-weapon h2 {
  font-size: 30px;
}
.box-weapon .weapon-content {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  gap: 70px;
}
.box-weapon .weapon-content .item {
  background-color: transparent;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  width: 18%;
  padding: 12px 22px;
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 20px #081b29;
  transition: all 0.3s ease;
  cursor: pointer;
}
.box-weapon .weapon-content .item:hover {
  background-color: #05111a;
  border: 2px solid #05111a;
}
.box-weapon .weapon-content .item:hover img {
  transform: scale(1.1);
}
.box-weapon .weapon-content .item h5 {
  font-size: 20px;
  font-weight: 700;
}
.box-weapon .weapon-content .item img {
  width: 100%;
  transition: all 0.3s ease;
}

.box-game {
  display: none;
  width: 100%;
  margin-top: 50px;
  text-align: center;
}
.box-game .text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 150px;
}
.box-game .text h2 {
  font-size: 30px;
}
.box-game .text h4 {
  font-size: 22px;
}
.box-game .weapon {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 200px;
}
.box-game .weapon #player {
  transform: rotate(70deg);
}
.box-game .weapon #computer {
  transform: scaleX(-1) rotate(70deg);
}
.box-game #hasil {
  font-size: 35px;
  margin: 30px 0 20px;
}
.box-game .reset {
  position: absolute;
  top: 20px;
  left: 30px;
  display: flex;
  gap: 20px;
}
.box-game .button {
  font-size: 30px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.box-game .button:hover {
  transform: scale(1.2);
}
.box-game h5 {
  font-size: 25px;
}

.danger {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 25px;
  cursor: pointer;
}

body.active .danger {
  color: #05111a;
}

body.active .reset i {
  color: #05111a;
}

@media (max-width: 550px) {
  .box-skors .skors-content {
    font-size: 25px;
  }
  .header {
    font-size: 30px;
    text-shadow: 0 0 10px #05111a;
  }
  .box-skors {
    color: #fff;
  }
  .box-weapon h2 {
    font-size: 25px;
    text-shadow: 0 0 10px #05111a;
  }
  .box-weapon .weapon-content {
    gap: 40px;
  }
  .box-weapon .weapon-content .item {
    width: 25%;
  }
  .box-weapon .weapon-content .item h5 {
    font-size: 16px;
  }
  .box-game .text .name {
    font-size: 20px;
  }
  .box-game .text h4 {
    font-size: 18px;
    text-shadow: 0 0 10px #05111a;
  }
  .box-game .weapon {
    gap: 80px;
  }
  .box-game .weapon img {
    width: 80%;
  }
  .box-game .weapon h5 {
    font-size: 20px;
    text-shadow: 0 0 10px #05111a;
  }
  .box-game .reset h5 {
    display: none;
  }
}
@media (max-width: 415px) {
  .box-skors .skors-content {
    font-size: 22px;
  }
  .danger {
    top: 10px;
    right: 20px;
    font-size: 18px;
  }
  .header {
    font-size: 25px;
    text-shadow: 0 0 10px #05111a;
  }
  .box-skors {
    color: #fff;
  }
  .box-weapon h2 {
    font-size: 22px;
    text-shadow: 0 0 10px #05111a;
  }
  .box-weapon .weapon-content {
    gap: 20px;
  }
  .box-weapon .weapon-content .item {
    width: 25%;
  }
  .box-weapon .weapon-content .item h5 {
    font-size: 16px;
  }
  .box-game .text {
    gap: 80px;
  }
  .box-game .text .name {
    font-size: 20px;
    text-shadow: 0 0 10px #05111a;
  }
  .box-game .text h4 {
    font-size: 18px;
    text-shadow: 0 0 10px #05111a;
  }
  .box-game .weapon img {
    width: 80%;
  }
  .box-game .weapon h5 {
    font-size: 20px;
    text-shadow: 0 0 10px #05111a;
  }
  .box-game .reset {
    top: 10px;
    left: 20px;
  }
  .box-game .reset i {
    font-size: 18px;
  }
  .box-game .reset h5 {
    display: none;
  }
}
.fade-up {
  transform: translate(0, 50px);
  opacity: 0;
  transition: all 1s ease;
}

.fade-down {
  transform: translate(0, -50px);
  opacity: 0;
  transition: all 1s ease;
}

.fade-left {
  transform: translate(50px, 0);
  opacity: 0;
  transition: all 1s ease;
}

.fade-right {
  transform: translate(-50px, 0);
  opacity: 0;
  transition: all 1s ease;
}

.fade-up.show,
.fade-down.show,
.fade-left.show,
.fade-right.show {
  opacity: 1;
  transform: translate(0);
}

@keyframes playerAnimation {
  0% {
    transform: translateY(0) rotate(70deg);
  }
  25% {
    transform: translateY(-10px) rotate(50deg);
  }
  50% {
    transform: translateY(0px) rotate(80deg);
  }
  75% {
    transform: translateY(-10px) rotate(50deg);
  }
  100% {
    transform: translateY(0) rotate(70deg);
  }
}
@keyframes computerAnimation {
  0% {
    transform: scaleX(-1) translateY(0) rotate(70deg);
  }
  25% {
    transform: scaleX(-1) translateY(-10px) rotate(50deg);
  }
  50% {
    transform: scaleX(-1) translateY(0px) rotate(80deg);
  }
  75% {
    transform: scaleX(-1) translateY(-10px) rotate(50deg);
  }
  100% {
    transform: scaleX(-1) translateY(0) rotate(70deg);
  }
}
@keyframes resetAnimation {
  0% {
    transform: rotate(0);
  }
  25% {
    transform: rotate(5deg);
  }
  50% {
    transform: rotate(-5deg);
  }
  75% {
    transform: rotate(5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.animate-player {
  animation: playerAnimation 0.8s ease-in 1s;
}

.animate-computer {
  animation: computerAnimation 0.8s ease-in 1s;
}

.resetAnimation {
  animation: resetAnimation 1s ease 5s infinite;
}/*# sourceMappingURL=style.css.map */