@font-face {
  font-family: f;
  src: url("./media/VT323-Regular.ttf");
}
body {
  padding: 0;
  margin: 0;
}

::-webkit-scrollbar {
  background: transparent;
  opacity: 0;
  width: 15px;
}

::-webkit-scrollbar-thumb {
  background: skyblue;
  border-radius: 0px;
}

#full-area {
  width: 100%;
  height: 100vh;
  background: black;
  position: absolute;
  overflow: hidden;
  user-select: none;
  font-family: f;
}
#full-area #game-area {
  width: 2000px;
  height: 1143px;
  background: black;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
}
#full-area #game-area #home-section {
  height: 100%;
  width: 110%;
  left: -5%;
  position: absolute;
  z-index: 2;
  animation: animateHome infinite 4s linear;
  z-index: 9999999999;
}
#full-area #game-area #home-section #background-video {
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  z-index: -1;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.491);
}
#full-area #game-area #home-section #home-btns {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-110%);
}
#full-area #game-area #home-section #home-btns button {
  margin: 7px;
  width: 350px;
  font-size: 30px;
  height: 57px;
  font-weight: 700;
  border: none;
  padding: 3px 0;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.56);
  background: rgba(255, 255, 255, 0.862);
  outline: none;
  letter-spacing: 2px;
  border-bottom: 7px solid #1d1d1d;
  overflow: hidden;
}
#full-area #game-area #home-section #home-btns button:hover {
  background: white;
}
#full-area #game-area #play-section {
  width: 100%;
  height: 100%;
  position: absolute;
  background: url("media/background.png");
  background-size: cover;
  background-position: center center;
}
#full-area #game-area #play-section #score {
  font-size: 60px;
  width: 100%;
  text-align: center;
  font-weight: 900;
  color: white;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.217);
  letter-spacing: 2px;
  position: absolute;
}
#full-area #game-area #play-section #score span {
  font-size: 70px;
}
#full-area #game-area #play-section #character {
  position: absolute;
  width: 110px;
  height: 150px;
  transform: translateX(900px) translateY(890px);
  z-index: 999;
}
#full-area #game-area #play-section #character img {
  height: 250px;
  margin-left: -70px;
  margin-top: -50px;
}
#full-area #game-area #play-section .hurt {
  animation: hurt 0.5s infinite;
}
#full-area #game-area #play-section #enemy {
  position: absolute;
  width: 460px;
  top: 0;
  height: 200px;
  transform: translateX(570px) translateY(200px);
  z-index: 2;
}
#full-area #game-area #play-section #enemy img {
  height: 100%;
  justify-content: center;
  display: flex;
  margin: 0 auto;
  z-index: 2;
}
#full-area #game-area #play-section #rocks {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 10;
}
#full-area #game-area #play-section #rocks .rock {
  height: 60px;
  width: 60px;
  border-radius: 60px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.483);
  transform: translateX(1000px) translateY(300px);
  position: absolute;
}
#full-area #game-area #play-section #rocks .rock img {
  height: 60px;
}
#full-area #game-area #end-section, #full-area #game-area #howToPlay-section, #full-area #game-area #leaderboard-section {
  width: 100%;
  height: 100%;
  background: #00000083;
  position: absolute;
  z-index: 9999;
}
#full-area #game-area #end-section .content, #full-area #game-area #howToPlay-section .content, #full-area #game-area #leaderboard-section .content {
  width: 900px;
  height: auto;
  background: rgba(0, 0, 0, 0.588);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 20px 50px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.361);
  border-radius: 5px;
  text-align: center;
  padding-bottom: 50px;
  border: 5px solid white;
  color: white;
  font-weight: 900;
}
#full-area #game-area #end-section .content h1, #full-area #game-area #howToPlay-section .content h1, #full-area #game-area #leaderboard-section .content h1 {
  font-size: 100px;
}
#full-area #game-area #end-section .content p, #full-area #game-area #howToPlay-section .content p, #full-area #game-area #leaderboard-section .content p {
  font-size: 35px;
  letter-spacing: 2px;
  font-weight: 500;
}
#full-area #game-area #end-section .content button, #full-area #game-area #end-section .content input, #full-area #game-area #howToPlay-section .content button, #full-area #game-area #howToPlay-section .content input, #full-area #game-area #leaderboard-section .content button, #full-area #game-area #leaderboard-section .content input {
  font-size: 30px;
  margin: 10px;
  padding: 2px 30px;
  outline: none;
  border-radius: 5px;
  border: none;
}
#full-area #game-area #end-section .content button:hover, #full-area #game-area #end-section .content input:hover, #full-area #game-area #howToPlay-section .content button:hover, #full-area #game-area #howToPlay-section .content input:hover, #full-area #game-area #leaderboard-section .content button:hover, #full-area #game-area #leaderboard-section .content input:hover {
  opacity: 0.9;
}
#full-area #game-area #end-section .content h6, #full-area #game-area #howToPlay-section .content h6, #full-area #game-area #leaderboard-section .content h6 {
  font-size: 40px;
}
#full-area #game-area #end-section .content input, #full-area #game-area #howToPlay-section .content input, #full-area #game-area #leaderboard-section .content input {
  padding-left: 20px;
  padding-right: 20px;
}
#full-area #game-area #end-section .content input:hover, #full-area #game-area #howToPlay-section .content input:hover, #full-area #game-area #leaderboard-section .content input:hover {
  opacity: 1;
}
#full-area #game-area #howToPlay-section .content {
  width: 1200px;
  padding: 20px 40px;
}
#full-area #game-area #howToPlay-section .content svg {
  position: absolute;
  left: 20px;
  top: 20px;
  width: 40px;
  height: 40px;
  cursor: pointer;
}
#full-area #game-area #howToPlay-section .content div {
  margin: 40px 0;
}
#full-area #game-area #howToPlay-section .content div p {
  text-align: left;
}
#full-area #game-area #howToPlay-section .content div p span {
  color: skyblue;
  font-weight: 900;
  text-decoration: underline;
}
#full-area #game-area #howToPlay-section .content button {
  background: skyblue;
}
#full-area #game-area #leaderboard-section .content {
  padding-right: 10px;
}
#full-area #game-area #leaderboard-section .content svg {
  position: absolute;
  left: 20px;
  top: 20px;
  width: 40px;
  height: 40px;
  cursor: pointer;
}
#full-area #game-area #leaderboard-section .content h1 {
  margin-bottom: 40px;
}
#full-area #game-area #leaderboard-section .content #player-list {
  height: 500px;
  overflow: auto;
  padding-right: 20px;
}
#full-area #game-area #leaderboard-section .content #player-list #player {
  display: flex;
  justify-content: space-between;
  margin-bottom: -12px;
}
#full-area #game-area #leaderboard-section .content #player-list #player div {
  display: flex;
}
#full-area #game-area #leaderboard-section .content #player-list #player div p {
  margin-right: 10px;
}

@keyframes animateHome {
  0% {
    background: rgba(0, 0, 0, 0.8);
  }
  50% {
    background: rgba(0, 0, 0, 0.5);
  }
  100% {
    background: rgba(0, 0, 0, 0.8);
  }
}
@keyframes rockAnim1 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rockAnim2 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
@keyframes hurt {
  0% {
    opacity: 1;
    filter: grayscale(1);
  }
  50% {
    opacity: 0.5;
    filter: grayscale(1);
  }
  100% {
    opacity: 1;
    filter: grayscale(1);
  }
}
.lds-ring {
  display: inline-block;
  position: absolute;
  width: 60px;
  height: 60px;
  left: 50%;
  margin: 0;
  transform: translate(-50%, -50%) scale(0.5);
  margin: 0;
  margin-top: 2px;
}

.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 60px;
  height: 60px;
  border: 6px solid black;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: black transparent transparent transparent;
  margin: 0;
  left: 0;
}

.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}

@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*# sourceMappingURL=index.css.map */
