@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;700&display=swap");
@font-face {
  font-family: "starwars";
  src: url("media/Starjout.eot?") format("eot"), url("media/Starjout.woff") format("woff"), url("media/Starjout.ttf") format("truetype"), url("media/Starjout.svg#StarJediOutline") format("svg");
  font-weight: normal;
  font-style: normal;
}
body {
  padding: 0;
  margin: 0;
}

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

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

#full-area {
  width: 100%;
  height: 100vh;
  position: absolute;
  user-select: none;
  overflow: hidden;
}
#full-area #game-area {
  width: 391px;
  height: 580px;
  background: url("media/bg.webp");
  background-size: cover;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(1);
  overflow: hidden;
  font-family: Montserrat;
}
#full-area #game-area #mobile-controllers {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 20;
  display: flex;
}
#full-area #game-area #mobile-controllers div:nth-child(1) {
  width: 50%;
  height: 100%;
}
#full-area #game-area #mobile-controllers div:nth-child(2) {
  width: 50%;
  height: 100%;
}
#full-area #game-area #game-area-background {
  width: 100%;
  height: 100%;
  position: absolute;
}
#full-area #game-area #game-area-background img {
  width: 40%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.3;
}
#full-area #game-area #ingame-menu {
  width: 100%;
  height: 45px;
  background: linear-gradient(180deg, #b1b1b1, #303030);
  border: 3px inset gray;
  border-bottom-color: #171717;
  border-left-color: #4d4d4d;
  border-top-color: #dadada;
  border-right-color: #4d4d4d;
  position: absolute;
  z-index: 20;
}
#full-area #game-area #ingame-menu #score {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  margin-left: 15px;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 1px;
  display: none;
}
#full-area #game-area #ingame-menu svg {
  position: absolute;
  left: 100%;
  width: 20px;
  height: 20px;
  margin-top: 10px;
  margin-left: -30px;
  cursor: pointer;
  z-index: 2;
}
#full-area #game-area #ingame-menu #sound-btn svg {
  margin-left: -63px;
  width: 25px;
  height: 25px;
  margin-top: 7.5px;
}
#full-area #game-area #ingame-menu #logout {
  border: none;
  border-radius: 2px;
  padding: 0px 10px;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.244);
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  outline: none;
  background: linear-gradient(-30deg, #f00501c8, #f00501);
  border: 2px inset gray;
  border-bottom-color: #f00501;
  border-left-color: #f00501c8;
  border-top-color: #f00501c8;
  border-right-color: #f00501;
  color: white;
  border-radius: 0px;
}
#full-area #game-area #ingame-menu #logout:hover {
  filter: brightness(1.3);
}
#full-area #game-area #home-section p {
  margin: 2px 0;
  font-weight: 600;
  text-align: center;
  color: rgba(255, 255, 255, 0.889);
}
#full-area #game-area #home-section p:nth-child(1) {
  margin-top: 60px;
}
#full-area #game-area #home-section p span {
  font-weight: 400;
}
#full-area #game-area #home-section button {
  position: relative;
  border: none;
  font-weight: 500;
  margin-top: 10px;
  width: 170px;
  border-radius: 2px;
  padding: 1px 0;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.244);
  outline: none;
  font-size: 20px;
  margin-left: 0px;
  margin-left: 190px;
  background: linear-gradient(180deg, #b1b1b1, #303030);
  border: 2px inset gray;
  border-bottom-color: #151515;
  border-left-color: #2f2f2f;
  border-top-color: #d7d7d7;
  border-right-color: #262626;
  color: white;
  border-radius: 0px;
  padding: 3px 0;
}
#full-area #game-area #home-section button:hover {
  filter: brightness(1.3);
}
#full-area #game-area #home-section button:nth-child(2) {
  margin-top: 300px;
}
#full-area #game-area #play-section #ingame-content {
  height: 100%;
  width: 100%;
}
#full-area #game-area #play-section #ingame-content #ingame-scroll-content {
  width: 0;
  height: 0;
  position: absolute;
  top: 0;
  left: 0;
}
#full-area #game-area #play-section #ingame-content #character {
  position: absolute;
  width: 30px;
  top: 82%;
  left: 70px;
  z-index: 10;
  transition: 0.5s;
}
#full-area #game-area #play-section #ingame-content #character-bullets {
  position: absolute;
  width: 100%;
  height: 100%;
  transition: 0.5s;
}
#full-area #game-area #play-section #ingame-content #character-bullets .character-bullet {
  width: 8px;
  height: 41px;
  background: url("media/bullet.webp");
  background-size: cover;
  position: absolute;
  top: 100px;
  left: 50px;
  border-radius: 6px;
  border-top-right-radius: 15px;
  border-top-left-radius: 15px;
}
#full-area #game-area #play-section #ingame-content #obstacles {
  position: absolute;
  height: 100%;
  width: 100%;
}
#full-area #game-area #play-section #ingame-content #obstacles .normal {
  width: 69px;
  height: 15px;
  background: url("media/Ground.webp");
  background-size: cover;
  position: absolute;
  left: 50px;
  top: 520px;
  border-radius: 50px;
  box-shadow: 1px 1px 2px 1px rgba(0, 0, 0, 0.244);
}
#full-area #game-area #play-section #ingame-content #obstacles .move {
  width: 69px;
  height: 15px;
  background: url("media/Moving_Platform.webp");
  background-size: cover;
  position: absolute;
  left: 10px;
  top: 45%;
  border-radius: 50px;
  box-shadow: 1px 1px 2px 1px rgba(0, 0, 0, 0.244);
  transition: 0.5s;
}
#full-area #game-area #play-section #ingame-content #obstacles .crack {
  width: 69px;
  height: 15px;
  position: absolute;
  left: 200px;
  top: 20%;
  display: flex;
  opacity: 0.9;
}
#full-area #game-area #play-section #ingame-content #obstacles .crack .crackP1 {
  width: 33px;
  height: 15px;
  background: url("media/Breakable_Left.webp");
  background-size: cover;
  border-bottom-left-radius: 50px;
  border-top-left-radius: 50px;
  box-shadow: 1px 1px 2px 1px rgba(0, 0, 0, 0.244);
}
#full-area #game-area #play-section #ingame-content #obstacles .crack .crackP2 {
  width: 33px;
  height: 15px;
  background: url("media/Breakable_Right.webp");
  background-size: cover;
  border-bottom-right-radius: 50px;
  border-top-right-radius: 50px;
  box-shadow: 1px 1px 2px 1px rgba(0, 0, 0, 0.244);
  margin-left: 3px;
}
#full-area #game-area #play-section #ingame-content #obstacles .boost1 {
  width: 40%;
  transform: translateY(-100%);
  position: absolute;
  left: 50%;
  z-index: 2;
}
#full-area #game-area #play-section #ingame-content #obstacles .boost2 {
  width: 50%;
  transform: translateY(-100%);
  position: absolute;
  left: 20%;
  top: -5px;
  z-index: 2;
}
#full-area #game-area #play-section #ingame-content #obstacles .boost3 {
  width: 30%;
  transform: translateY(-100%);
  position: absolute;
  left: 20%;
  top: -5px;
  z-index: 2;
}
#full-area #game-area #play-section #ingame-content #obstacles .coin {
  width: 40%;
  transform: translateY(-120%);
  position: absolute;
  left: 35%;
  z-index: 2;
}
#full-area #game-area #play-section #ingame-content #obstacles .enemy1 {
  width: 70%;
  transform: translateY(-100%);
  position: absolute;
  left: 15%;
  z-index: 2;
}
#full-area #game-area #play-section #ingame-content #obstacles .enemy3 {
  width: 65%;
  transform: translateY(-100%);
  position: absolute;
  left: 20%;
  z-index: 2;
}
#full-area #game-area #play-section #ingame-content #obstacles .enemy2 {
  width: 65%;
  transform: translateY(-100%);
  position: absolute;
  left: 20%;
  z-index: 2;
}
#full-area #game-area #play-section #ingame-content #game-over-screen {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 830px;
  display: none;
  background: url("media/gameOver.webp");
}
#full-area #game-area #play-section #ingame-content #game-over-screen h1 {
  margin-top: 90px;
  text-align: center;
  color: white;
  font-size: 45px;
  text-shadow: 1px 1px 5px #f00501;
  font-family: starwars;
  display: none;
}
#full-area #game-area #play-section #ingame-content #game-over-screen p {
  margin: 0;
  font-weight: 600;
  text-align: center;
  color: rgba(255, 255, 255, 0.889);
}
#full-area #game-area #play-section #ingame-content #game-over-screen p:nth-child(2) {
  margin-top: 400px;
}
#full-area #game-area #play-section #ingame-content #game-over-screen p span {
  font-weight: 400;
}
#full-area #game-area #play-section #ingame-content #game-over-screen button {
  position: relative;
  left: 50%;
  border: none;
  font-weight: 500;
  transform: translateX(-50%);
  margin-top: 5px;
  width: 120px;
  border-radius: 2px;
  padding: 1px 0;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.244);
  outline: none;
  background: linear-gradient(180deg, #b1b1b1, #303030);
  border: 2px inset gray;
  border-bottom-color: #151515;
  border-left-color: #2f2f2f;
  border-top-color: #d7d7d7;
  border-right-color: #262626;
  color: white;
  border-radius: 3px;
}
#full-area #game-area #play-section #ingame-content #game-over-screen button:hover {
  filter: brightness(1.3);
}
#full-area #game-area #play-section #ingame-content #game-over-screen button:nth-child(5) {
  margin-top: 20px;
}
#full-area #game-area #leaderboard-section {
  margin-top: 40px;
  width: 100%;
  height: 100%;
  position: absolute;
  background: rgba(0, 0, 0, 0.626);
  color: white;
  display: none;
}
#full-area #game-area #leaderboard-section h1 {
  font-size: 20px;
  margin-top: 5px;
  padding-bottom: 5px;
  padding-left: 10px;
  border-bottom: 3px solid white;
}
#full-area #game-area #leaderboard-section h1 svg {
  position: absolute;
  width: 18px;
  height: 18px;
  left: 100%;
  margin-left: -30px;
  margin-top: 4px;
  cursor: pointer;
}
#full-area #game-area #leaderboard-section #players-list {
  overflow-y: scroll;
  height: 495px;
  width: 99%;
  padding: 0 20px;
}
#full-area #game-area #leaderboard-section #players-list #player {
  display: flex;
  justify-content: space-between;
}
#full-area #game-area #leaderboard-section #players-list #player #player-name span {
  margin-left: 10px;
}
#full-area #game-area #leaderboard-section #players-list #player svg {
  margin-top: -6px;
}
#full-area #game-area #login-section {
  background: url("media/NEW WELCOME SCREEN.webp");
  width: 100%;
  height: 100%;
  position: absolute;
}
#full-area #game-area #login-section h1 {
  margin-top: 90px;
  text-align: center;
  color: white;
  font-size: 45px;
  text-shadow: 1px 1px 5px #f00501;
  font-family: starwars;
  display: none;
}
#full-area #game-area #login-section form {
  width: 100%;
  position: absolute;
  margin-top: 430px;
}
#full-area #game-area #login-section form input, #full-area #game-area #login-section form button {
  display: flex;
  justify-content: center;
  margin: 5px auto;
  border-radius: 3px;
  border: none;
  outline: none;
  width: 50%;
  height: 30px;
}
#full-area #game-area #login-section form input {
  padding-left: 5px;
  font-size: 12px;
}
#full-area #game-area #login-section form button {
  position: relative;
  border: none;
  background: linear-gradient(180deg, #b1b1b1, #303030);
  border: 2px inset gray;
  border-bottom-color: #151515;
  border-left-color: #2f2f2f;
  border-top-color: #d7d7d7;
  border-right-color: #262626;
  color: white;
  border-radius: 3px;
  padding: 3px 0;
  font-weight: 500;
  font-size: 14px;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.244);
  border-radius: 3px;
}
#full-area #game-area #login-section form button:hover {
  filter: brightness(1.3);
}
#full-area #game-area #login-section form p {
  font-size: 10px;
  text-align: center;
  color: white;
}
#full-area #game-area #login-section form p span {
  color: #ffa509;
  text-decoration: underline;
  cursor: pointer;
  color: #f00501;
}
#full-area #game-area #login-section #createAccount-form {
  margin-top: 400px;
}
#full-area button {
  z-index: 22;
}

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