@font-face {
  font-family: f;
  src: url("media/typo-cut-out-demo.shaky.otf");
}
@keyframes shoot {
  0% {
    transform: rotate(0);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes enemy {
  0% {
    top: 0%;
  }
  50% {
    top: 80%;
  }
  100% {
    top: 0%;
  }
}
body {
  padding: 0;
  margin: 0;
}

::-webkit-scrollbar {
  background: transparent;
  width: 7px;
}

::-webkit-scrollbar-thumb {
  background: white;
  border-radius: 5px;
}

#full-area {
  width: 100%;
  height: 100vh;
  user-select: none;
  background: black;
  overflow: hidden;
  position: absolute;
}
#full-area #game-area {
  width: 700px;
  height: 381px;
  background: url("media/BG.webp");
  background-size: cover;
  background-position-x: 0%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: scale(1) translate(-50%, -50%);
  border-radius: 0px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.253);
}
#full-area #game-area #volume {
  background: #009400;
  color: white;
  position: absolute;
  padding: 3.5px;
  padding-top: 0;
  border-radius: 3px;
  left: 100%;
  cursor: pointer;
  z-index: 999999;
  margin: 5px 0 0 -32.5px;
}
#full-area #game-area #volume:hover {
  background: green;
  transition: 0.1s;
}
#full-area #game-area #menu-section {
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#full-area #game-area #menu-section h1 {
  color: green;
  font-family: f;
  text-align: center;
  font-size: 60px;
}
#full-area #game-area #menu-section div {
  display: flex;
  justify-content: center;
  margin: 10px auto;
  background: green;
  width: 300px;
  height: 40px;
  border-radius: 3px;
  font-family: f;
  align-items: center;
  cursor: pointer;
  color: white;
  font-size: 20px;
  padding-top: 1px;
  font-size: 25px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
#full-area #game-area #menu-section div:hover {
  transform: scale(1.03);
  transition: 0.2s;
}
#full-area #game-area #leaderboard-section {
  width: 100%;
  height: 100%;
  background: #1a507985;
  display: none;
}
#full-area #game-area #leaderboard-section h1 {
  width: 100%;
  font-size: 20px;
  padding: 5px 10px;
  padding-top: 10px;
  color: white;
  font-family: f;
  border-bottom: 4px solid white;
  text-transform: uppercase;
  letter-spacing: 2px;
}
#full-area #game-area #leaderboard-section svg {
  position: absolute;
  left: 100%;
  transform: translate(-100%);
  color: white;
  margin: -43px 0 0 -10px;
  cursor: pointer;
}
#full-area #game-area #leaderboard-section #players-list {
  width: 100%;
  overflow: hidden;
  overflow-y: scroll;
  height: 315px;
  font-size: 19px;
}
#full-area #game-area #leaderboard-section #players-list #player {
  display: flex;
  color: white;
  font-weight: 500;
}
#full-area #game-area #leaderboard-section #players-list #player #player-rank {
  width: 5%;
  text-align: center;
}
#full-area #game-area #leaderboard-section #players-list #player #player-name {
  width: 85%;
  padding-left: 15px;
}
#full-area #game-area #leaderboard-section #players-list #player #player-score {
  width: 10%;
  text-align: center;
  padding-left: 10px;
}
#full-area #game-area #play-section {
  display: none;
  width: 100%;
  height: 100%;
}
#full-area #game-area #play-section #score {
  text-align: center;
  font-size: 30px;
  padding-top: 5px;
  position: absolute;
  font-weight: 500;
  width: 100%;
  z-index: 1000;
  font-family: f;
  color: green;
}
#full-area #game-area #play-section #main {
  width: 32px;
  position: absolute;
  top: 44%;
  left: 20%;
  z-index: 11;
}
#full-area #game-area #play-section #home {
  width: 170px;
  transition: 5s;
  position: absolute;
  top: 55%;
  left: 50%;
  margin-left: -270px;
}
#full-area #game-area #play-section #bubbles img {
  position: absolute;
  left: 0;
  top: 0;
  width: 0px;
  margin-top: 0px;
  margin-left: 0px;
  z-index: 5;
}
#full-area #game-area #play-section #shooting {
  position: absolute;
  width: 100%;
}
#full-area #game-area #play-section #shooting .shoot {
  position: absolute;
  width: 10px;
  transform: rotate(0);
  animation: shoot 0.65s linear infinite;
  left: 0;
}
#full-area #game-area #play-section .ancient {
  width: 40px;
  position: absolute;
  top: 5px;
  left: 100%;
}
#full-area #game-area #play-section .banana {
  height: 50px;
  position: absolute;
  left: 10px;
}
#full-area #game-area #play-section .doubler {
  height: 50px;
  position: absolute;
  left: -2px;
}
#full-area #game-area #play-section .enemy {
  position: absolute;
  left: 100%;
  top: 0;
  animation: enemy 3.5s infinite linear;
  width: 75px;
  height: 70px;
}
#full-area #game-area #play-section .enemy img {
  position: absolute;
}
#full-area #game-area #play-section .enemy img:nth-child(1) {
  width: 100px;
  margin-top: 52px;
}
#full-area #game-area #play-section .enemy img:nth-child(2) {
  width: 50px;
  margin-left: 20px;
}
#full-area #game-area #play-section .obs {
  height: 100%;
  position: absolute;
  left: 100%;
  z-index: 10;
  transition: 4s;
}
#full-area #game-area #play-section .obs .obs-top {
  height: 333px;
  background: url("media/obs.webp");
  background-size: cover;
  position: absolute;
  transform: rotate(180deg);
  top: 250px;
  margin-top: -333px;
}
#full-area #game-area #play-section .obs .obs-bottom {
  height: 333px;
  background: url("media/obs.webp");
  background-size: cover;
  position: absolute;
  top: 370px;
  margin-top: 0;
}
#full-area #game-area #buttons {
  width: 100%;
  justify-content: center;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  margin-top: -55px;
  display: none;
  z-index: 99999;
  transform: translate(0, 0);
}
#full-area #game-area #again, #full-area #game-area #submit {
  display: flex;
  justify-content: center;
  margin: 10px auto;
  background: green;
  width: 300px;
  height: 40px;
  border-radius: 3px;
  font-family: f;
  align-items: center;
  cursor: pointer;
  color: white;
  font-size: 20px;
  padding-top: 1px;
  font-size: 25px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
#full-area #game-area #again:hover, #full-area #game-area #submit:hover {
  transform: scale(1.03);
  transition: 0.2s;
}
#full-area #game-area #submit-section {
  width: 100%;
  height: 100%;
  position: absolute;
  display: none;
}
#full-area #game-area #submit-section form {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1000;
  transform: translate(-50%, -50%);
  margin-top: 10px;
}
#full-area #game-area #submit-section form input {
  width: 300px;
  outline: none;
  border: none;
  padding-left: 5px;
  height: 35px;
  border-radius: 3px;
  margin: 5px 0;
  color: black;
  font-weight: 500;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.133);
}
#full-area #game-area #submit-section form button, #full-area #game-area #submit-section form #quit-btn {
  display: flex;
  justify-content: center;
  margin: 5px auto;
  background: white;
  width: 300px;
  height: 35px;
  border-radius: 3px;
  align-items: center;
  cursor: pointer;
  background-color: green;
  color: white;
  font-size: 20px;
  padding-top: 1px;
  border: none;
  outline: none;
  font-family: f;
  padding-top: 2px;
  letter-spacing: 2px;
  text-transform: uppercase;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.133);
}
#full-area #game-area #submit-section form button:hover, #full-area #game-area #submit-section form #quit-btn:hover {
  transform: scale(1.03);
  transition: 0.2s;
}
#full-area #game-area #submit-section form p {
  color: green;
  text-align: center;
  font-family: f;
  margin-bottom: 0px;
}
#full-area #game-area #submit-section form button {
  background: green;
  color: white;
}

@media (max-width: 800px) {
  #full-area {
    width: 100%;
    height: 100vh;
    user-select: none;
    background: black;
    overflow: hidden;
    position: absolute;
  }
  #full-area #game-area {
    width: 300px;
    height: 381px;
    background: url("media/BG.webp");
    background-size: cover;
    background-position-x: 0%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: scale(1) translate(0%, -50%);
    border-radius: 0px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.253);
    margin: 0;
  }
  #full-area #game-area #volume {
    background: #009400;
    color: white;
    position: absolute;
    padding: 3.5px;
    padding-top: 0;
    border-radius: 3px;
    left: 100%;
    cursor: pointer;
    z-index: 999999;
    margin: 5px 0 0 -32.5px;
  }
  #full-area #game-area #volume:hover {
    background: green;
    transition: 0.1s;
  }
  #full-area #game-area #menu-section {
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
  }
  #full-area #game-area #menu-section h1 {
    color: green;
    font-family: f;
    text-align: center;
    font-size: 60px;
  }
  #full-area #game-area #menu-section div {
    display: flex;
    justify-content: center;
    margin: 10px auto;
    background: green;
    width: 90%;
    height: 40px;
    border-radius: 3px;
    font-family: f;
    align-items: center;
    cursor: pointer;
    color: white;
    font-size: 20px;
    padding-top: 1px;
    font-size: 25px;
    letter-spacing: 2px;
    text-transform: uppercase;
  }
  #full-area #game-area #menu-section div:hover {
    transform: scale(1.03);
    transition: 0.2s;
  }
  #full-area #game-area #leaderboard-section {
    width: 100%;
    height: 100%;
    background: #1a507985;
    display: none;
  }
  #full-area #game-area #leaderboard-section h1 {
    width: 100%;
    font-size: 20px;
    padding: 5px 10px;
    padding-top: 10px;
    color: white;
    font-family: f;
    border-bottom: 4px solid white;
  }
  #full-area #game-area #leaderboard-section svg {
    position: absolute;
    left: 100%;
    transform: translate(-100%);
    color: white;
    margin: -43px 0 0 -10px;
    cursor: pointer;
  }
  #full-area #game-area #leaderboard-section #players-list {
    width: 100%;
    overflow: hidden;
    overflow-y: scroll;
    height: 315px;
    font-size: 19px;
  }
  #full-area #game-area #leaderboard-section #players-list #player {
    display: flex;
    color: white;
    font-weight: 500;
    padding-left: 5px;
  }
  #full-area #game-area #leaderboard-section #players-list #player #player-rank {
    width: 5%;
    text-align: center;
  }
  #full-area #game-area #leaderboard-section #players-list #player #player-name {
    width: 75%;
    padding-left: 15px;
  }
  #full-area #game-area #leaderboard-section #players-list #player #player-score {
    width: 20%;
    text-align: center;
    padding-left: 10px;
    text-align: right;
  }
  #full-area #game-area #play-section {
    display: none;
    width: 100%;
    height: 100%;
  }
  #full-area #game-area #play-section #score {
    width: 100%;
    text-align: center;
    font-size: 30px;
    padding-top: 5px;
    position: absolute;
    font-weight: 500;
    z-index: 1000;
    font-family: f;
    color: green;
  }
  #full-area #game-area #play-section #main {
    width: 29px;
    position: absolute;
    top: 44%;
    left: 10%;
    z-index: 11;
  }
  #full-area #game-area #play-section #home {
    width: 100px;
    transition: 5s;
    position: absolute;
    top: 55%;
    left: 20%;
    margin-left: -60px;
  }
  #full-area #game-area #play-section #bubbles img {
    position: absolute;
    left: 0;
    top: 0;
    width: 0px;
    margin-top: 0px;
    margin-left: 0px;
    z-index: 5;
  }
  #full-area #game-area #play-section #shooting {
    position: absolute;
    width: 100%;
  }
  #full-area #game-area #play-section #shooting .shoot {
    position: absolute;
    width: 10px;
    transform: rotate(0);
    animation: shoot 0.65s linear infinite;
    left: 0;
  }
  #full-area #game-area #play-section .ancient {
    width: 40px;
    position: absolute;
    top: 5px;
    left: 100%;
  }
  #full-area #game-area #play-section .banana {
    height: 50px;
    position: absolute;
    left: 10px;
  }
  #full-area #game-area #play-section .doubler {
    height: 50px;
    position: absolute;
    left: -2px;
  }
  #full-area #game-area #play-section .enemy {
    position: absolute;
    left: 100%;
    top: 0;
    animation: enemy 5.5s infinite linear;
    width: 75px;
    height: 70px;
  }
  #full-area #game-area #play-section .enemy img {
    position: absolute;
  }
  #full-area #game-area #play-section .enemy img:nth-child(1) {
    width: 100px;
    margin-top: 52px;
  }
  #full-area #game-area #play-section .enemy img:nth-child(2) {
    width: 50px;
    margin-left: 20px;
  }
  #full-area #game-area #play-section .obs {
    height: 100%;
    position: absolute;
    left: 100%;
    z-index: 10;
    transition: 4s;
  }
  #full-area #game-area #play-section .obs .obs-top {
    height: 333px;
    background: url("media/obs.webp");
    background-size: cover;
    position: absolute;
    transform: rotate(180deg);
    top: 250px;
    margin-top: -333px;
  }
  #full-area #game-area #play-section .obs .obs-bottom {
    height: 333px;
    background: url("media/obs.webp");
    background-size: cover;
    position: absolute;
    top: 370px;
    margin-top: 0;
  }
  #full-area #game-area #buttons {
    width: 100%;
    justify-content: center;
    margin: 0 auto;
    position: absolute;
    top: 50%;
    margin-top: -55px;
    display: none;
    z-index: 99999;
    transform: translate(0, 0);
    left: 0;
  }
  #full-area #game-area #again, #full-area #game-area #submit {
    display: flex;
    justify-content: center;
    margin: 10px auto;
    background: green;
    width: 80%;
    height: 40px;
    border-radius: 3px;
    font-family: f;
    align-items: center;
    cursor: pointer;
    color: white;
    font-size: 20px;
    padding-top: 1px;
    font-size: 25px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 10px auto;
  }
  #full-area #game-area #again:hover, #full-area #game-area #submit:hover {
    transform: scale(1);
    transition: 0s;
  }
  #full-area #game-area #submit-section {
    width: 100%;
    height: 100%;
    position: absolute;
    display: none;
  }
  #full-area #game-area #submit-section form {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1000;
    transform: translate(-50%, -50%);
    margin-top: 10px;
    width: 100%;
  }
  #full-area #game-area #submit-section form input {
    width: 90%;
    outline: none;
    border: none;
    padding-left: 5px;
    height: 35px;
    border-radius: 3px;
    margin: 5px 0;
    color: black;
    font-weight: 500;
    margin-left: 5%;
  }
  #full-area #game-area #submit-section form button, #full-area #game-area #submit-section form #quit-btn {
    display: flex;
    justify-content: center;
    margin: 5px auto;
    background: green;
    width: 90%;
    height: 35px;
    border-radius: 3px;
    align-items: center;
    cursor: pointer;
    background-color: green;
    color: white;
    font-size: 20px;
    padding-top: 1px;
    border: none;
    outline: none;
    font-family: f;
    padding-top: 2px;
  }
  #full-area #game-area #submit-section form button:hover, #full-area #game-area #submit-section form #quit-btn:hover {
    transform: scale(1.03);
    transition: 0.2s;
  }
  #full-area #game-area #submit-section form p {
    color: green;
    text-align: center;
    font-family: f;
    margin-bottom: 0px;
  }
  #full-area #game-area #submit-section form button {
    background: green;
    color: white;
  }
}

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