@font-face {
  font-family: f;
  src: url("/media/games/hotel-detective/fonts/LilitaOne-Regular.ttf");
}
@font-face {
  font-family: f2;
  src: url("/media/games/hotel-detective/fonts/Hanindya.otf");
}
#full-area {
  width: 100%;
  height: 100vh;
  background: #000;
  position: absolute;
  overflow: hidden;
  user-select: none;
}
#full-area #game-area {
  position: absolute;
  width: 1280px;
  height: 720px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: url("/media/games/hotel-detective/images/background.png");
  background-size: cover;
  background-position: bottom center;
  overflow: hidden;
}
#full-area #game-area.screamAnim {
  animation: screamAnim 0.2s infinite;
}
#full-area #game-area #content {
  height: 100%;
  width: 100%;
  overflow: hidden;
  position: absolute;
  z-index: 999999999;
  background: url("/media/games/hotel-detective/images/background.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
}
#full-area #game-area #content #home-section {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 999999;
  position: absolute;
}
#full-area #game-area #content #home-section #home-door1, #full-area #game-area #content #home-section #home-door2 {
  position: absolute;
  left: -80px;
  top: 136px;
}
#full-area #game-area #content #home-section #home-door2 {
  left: 100%;
  transform: translateX(-100%) rotateY(180deg);
  margin-left: 50px;
}
#full-area #game-area #content #home-section #home-right {
  position: absolute;
  left: 50%;
  top: 41%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
}
#full-area #game-area #content #home-section #logo {
  height: 450px;
  justify-content: center;
  display: flex;
  animation: logoAnim 1.3s infinite;
}
#full-area #game-area #content #home-section #home-btns {
  width: 70%;
  margin-left: 11%;
  justify-content: space-around;
  display: flex;
  margin-top: 50px;
}
#full-area #game-area #content #home-section #home-btns img {
  width: 300px;
  cursor: pointer;
}
#full-area #game-area #content #end-section {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 999999999;
}
#full-area #game-area #content #end-section .content {
  width: 80%;
  left: 10%;
  height: 100%;
  position: relative;
  background-size: cover;
}
#full-area #game-area #content #end-section .content p {
  text-align: center;
  position: relative;
  top: 210px;
  left: 50%;
  transform: translateX(-50%);
  width: 270px;
  font-size: 25px;
  line-height: 45px;
}
#full-area #game-area #content #end-section .content p span {
  color: gold;
  font-size: 35px;
  font-weight: bold;
  margin: 0 10px;
}
#full-area #game-area #content #end-section .content #logo2 {
  height: 60%;
  display: flex;
  margin: 0 auto;
  margin-top: -4%;
  z-index: 2;
  position: relative;
  top: 40px;
  animation: logoAnim 1.3s infinite;
}
#full-area #game-area #content #end-section .content #end-btns {
  left: 50%;
  top: 60%;
  transform: translate(-50%, -100%) scale(1.1);
  position: relative;
  padding-top: 0px;
  margin-left: -3px;
}
#full-area #game-area #content #end-section .content #end-btns img {
  height: 80px;
  cursor: pointer;
  display: flex;
  margin: 0px auto;
}
#full-area #game-area #content #end-section .content #end-btns img:nth-child(3) {
  height: 75px;
}
#full-area #game-area #content #end-section .content #end-btns img:nth-child(5) {
  height: 70px;
}
#full-area #game-area #content #play-section {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 9999;
  left: 0;
  top: 0;
}
#full-area #game-area #content #play-section #score {
  color: white;
  background: #0000006e;
  position: absolute;
  padding: 9px 0px;
  font-size: 35px;
  font-family: f;
  margin: 25px 25px;
  width: 220px;
  text-align: center;
  left: 0%;
  transform: translateX(0%);
  border-radius: 20px;
  font-style: italic;
  border: 2px solid white;
}
#full-area #game-area #content #play-section #question-section {
  display: flex;
  width: 110%;
  justify-content: space-between;
  position: absolute;
  top: 228px;
  left: -5%;
}
#full-area #game-area #content #play-section #answer-section {
  width: 110%;
  justify-content: center;
  position: absolute;
  top: 135px;
  left: -5%;
  height: 100%;
  display: none;
}
#full-area #game-area #content #play-section #answer-section #room-video {
  position: absolute;
  left: 50%;
  top: -105px;
  transform: translate(-52%, 0%) scale(0.87);
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  pointer-events: none;
  z-index: 0;
  display: none;
}
#full-area #game-area #content #play-section #answer-section #room-overlay-bg {
  position: absolute;
  left: 0;
  top: -225px;
  transform: none;
  width: 100%;
  height: calc(100% + 135px);
  padding: 20px;
  background: url("/media/games/hotel-detective/images/background-v6.png");
  background-size: cover;
  background-position: bottom center;
  pointer-events: none;
  z-index: 1;
  transition: background 0.3s ease;
}
#full-area #game-area #content #play-section #answer-section #room-overlay-bg.black {
  background: url("/media/games/hotel-detective/images/background-v6.png") black;
  background-size: cover;
  background-position: bottom center;
}
#full-area #game-area #content #play-section #answer-section #hd-video {
  position: absolute;
  left: 50%;
  top: calc(50% - 135px);
  transform: translate(-50%, -50%);
  z-index: -1;
  pointer-events: none;
  z-index: 99999;
  display: none;
  width: 100%;
}
#full-area #game-area #content #play-section #answer-section #culprit, #full-area #game-area #content #play-section #answer-section #question-mark {
  position: absolute;
  width: 250px;
  height: 400px;
  top: 100px;
  left: 50%;
  transform: translateX(-50%) scale(0);
  opacity: 0;
  z-index: 9;
}
#full-area #game-area #content #play-section #answer-section #culprit img, #full-area #game-area #content #play-section #answer-section #question-mark img {
  max-width: 80%;
  max-height: 80%;
  position: relative;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  margin-left: 10px;
}
#full-area #game-area #content #play-section #answer-section #question-mark {
  animation: scale 1s infinite;
  left: 40.5%;
}
#full-area #game-area #content #play-section #answer-section #room-number {
  position: absolute;
  left: 220px;
  top: -30px;
  z-index: 3;
}
#full-area #game-area #content #play-section #answer-section #room-number img {
  width: 300px;
}
#full-area #game-area #content #play-section #answer-section #room-number p {
  font-family: f2;
  color: black;
  font-size: 100px;
  transform: rotate(-15deg);
  position: relative;
  left: 30px;
  top: -50px;
}
#full-area #game-area #content #play-section #answer-section .door {
  z-index: 4;
  position: relative;
  left: calc(50% - 5px);
  transform: translate(-50%, -60px) scale(1.083);
}
#full-area #game-area #content #play-section #ghost-gun {
  width: 280px;
  position: absolute;
  top: 435px;
  left: 40px;
  display: none;
}
#full-area #game-area #content #play-section #ghost-gun img {
  width: 100%;
  transform: rotateY(180deg);
}
#full-area #game-area #content #play-section #hotel-owner {
  width: 370px;
  position: absolute;
  left: 100%;
  top: 97.5%;
  transform: translateX(-100%) translateY(-100%);
  z-index: 999;
}
#full-area #game-area #content #play-section #hotel-owner .sprite {
  width: 100%;
}
#full-area #game-area #content #play-section #hotel-owner .buble {
  width: 50%;
  position: absolute;
  left: -80px;
  top: 70px;
  animation: seqAnim 1.5s infinite;
  display: none;
}
#full-area #game-area #content #play-section #hotel-owner .buble img {
  width: 100%;
}
#full-area #game-area #content #play-section #hotel-owner .buble p {
  text-align: center;
  font-family: f;
  font-size: 25px;
  width: 65%;
  height: 70%;
  position: absolute;
  left: 45%;
  top: 50%;
  align-items: center;
  display: flex;
  justify-content: center;
  transform: translate(-50%, -50%);
  line-height: 25px;
  flex-wrap: wrap;
  color: black;
}
#full-area #game-area #content #play-section #testing, #full-area #game-area #content #play-section #testing2 {
  position: absolute;
  display: flex;
  margin: 0 auto;
  justify-content: center;
  width: 100%;
  margin-top: 55px;
  z-index: 9999999999999;
}
#full-area #game-area #content #play-section #progress-paper {
  width: 100%;
  height: 100%;
  background: #0000005a;
  font-family: f2;
  position: absolute;
  z-index: 99999;
  display: none;
}
#full-area #game-area #content #play-section #progress-paper .content {
  width: 907px;
  height: 550px;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 43.5%;
  background: url("/media/games/hotel-detective/images/parchment.png");
  background-size: cover;
}
#full-area #game-area #content #play-section #progress-paper .content #magnify-glass {
  width: 200px;
  position: absolute;
  top: 60%;
  left: 80%;
  animation: scale 1.5s infinite;
}
#full-area #game-area #content #play-section #progress-paper .content h1 {
  width: 100%;
  text-align: center;
  font-size: 70px;
  top: 70px;
  position: relative;
  color: black;
}
#full-area #game-area #content #play-section #progress-paper .content h1 span {
  color: darkgreen;
}
#full-area #game-area #content #play-section #progress-paper .content #underline {
  width: 540px;
  display: flex;
  margin: 0 auto;
  opacity: 0.9;
  margin-top: 50px;
}
#full-area #game-area #content #play-section #progress-paper .content #checked-rooms {
  display: flex;
  flex-wrap: wrap;
  width: 65%;
  position: relative;
  left: 20%;
  font-size: 50px;
}
#full-area #game-area #content #play-section #progress-paper .content #checked-rooms p {
  margin: 0 10px;
  color: red;
  text-decoration: line-through;
  text-decoration-color: black;
  text-decoration-thickness: 2px;
  /* Adjust the thickness of the line */
  text-decoration-style: wavy;
}
#full-area #game-area #content #scoreboard-section {
  width: 100%;
  height: 100%;
  z-index: 99999999;
  position: absolute;
  left: 0;
  top: 0;
  background: #00000097;
}
#full-area #game-area #content #scoreboard-section h1 {
  color: white;
  font-family: f2;
  font-size: 70px;
  text-align: center;
  color: black;
  letter-spacing: 10px;
  top: 200px;
  width: 100%;
  z-index: 2;
  position: absolute;
}
#full-area #game-area #content #scoreboard-section #back-btn {
  left: 100%;
  top: 93%;
  position: absolute;
  transform: translate(-100%, -100%);
  margin: -5px -25px;
  cursor: pointer;
  z-index: 1;
  cursor: pointer;
}
#full-area #game-area #content #scoreboard-section #back-btn img {
  width: 200px;
}
#full-area #game-area #content #scoreboard-section #back-btn p {
  font-size: 50px;
  color: white;
  font-family: f;
  padding: 0 30px;
  border: 2px solid white;
  border-radius: 15px;
  background: #000000a1;
}
#full-area #game-area #content #scoreboard-section #scores {
  width: 67%;
  height: 520px;
  position: absolute;
  background: url("/media/games/hotel-detective/images/parchment.png");
  background-size: cover;
  top: 50%;
  left: 48%;
  transform: translate(-50%, -50%) scale(1.1);
  padding-top: 175px;
}
#full-area #game-area #content #scoreboard-section #scores h6 {
  color: black;
  font-family: f;
  font-size: 70px;
  position: relative;
  width: 75%;
  text-align: center;
  top: 20%;
  transform: translateY(-100%);
  -webkit-text-stroke: 3px rgba(0, 0, 0, 0.716);
  margin-bottom: 20px;
}
#full-area #game-area #content #scoreboard-section #scores p {
  color: black;
  font-family: f2;
  letter-spacing: 5px;
  font-size: 35px;
  -webkit-text-stroke: 2px rgba(0, 0, 0, 0.716);
  margin: -37px 0;
  margin-left: 220px;
}
#full-area #game-area #content #scoreboard-section #scores p img {
  height: 50px;
  margin-right: 20px;
  margin-top: -10px;
  margin-left: 5px;
}
#full-area #game-area #content #scoreboard-section #scores p span:nth-child(1) {
  position: relative;
  top: 10px;
  font-size: 65px;
  margin-right: 50px;
  -webkit-text-stroke: 3px rgba(0, 0, 0, 0.716);
}

.end {
  animation: end 1s ease-out;
  animation-fill-mode: forwards;
}

@keyframes screamAnim {
  0% {
    transform: translate(-50%, -50%) scale(1) rotate(1deg);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.03) rotate(-2deg);
  }
  100% {
    transform: translate(-50%, -50%) scale(1) rotate(1deg);
  }
}
@keyframes btnAnim {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.97);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes logoAnim {
  0% {
    transform: scale(1) rotate(-5deg);
  }
  50% {
    transform: scale(0.96) rotate(0deg);
  }
  100% {
    transform: scale(1) rotate(-5deg);
  }
}
@keyframes seqAnim {
  0% {
    transform: scale(1) rotate(-15deg);
    transform-origin: bottom right;
  }
  50% {
    transform: scale(0.96) rotate(-5deg);
    transform-origin: bottom right;
  }
  100% {
    transform: scale(1) rotate(-15deg);
    transform-origin: bottom right;
  }
}
@keyframes scale {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.96);
  }
  100% {
    transform: scale(1);
  }
}
.level {
  transition: transform 0.3s ease;
}

.pressed {
  transform: scale(0.5);
  /* Adjust the scale to a suitable level */
}

#full-area #game-area #content #top-info2 {
  width: 100%;
  opacity: 1;
  display: flex;
  justify-content: center;
  position: relative;
}

#full-area #game-area #content #top-info2 {
  padding: 3px 30px;
  border: none;
  color: white;
  font-weight: 500;
  font-size: 7vh;
  opacity: 1;
  cursor: default;
  text-shadow: 0px 1px 1px black;
}

#prompt-buttons {
  position: fixed;
  /* Positioning relative to the viewport */
  bottom: 200px;
  left: 50%;
  /* Centering horizontally */
  transform: translateX(-50%);
  /* Precise centering by shifting half of its own width to the left */
  z-index: 9999999999;
}

#prompt-buttons img {
  margin: 0 5px;
  /* Optional: Adds spacing between the buttons */
  z-index: 9999999999;
  cursor: pointer;
  /* Changes the cursor to a pointer when hovering over the buttons */
  width: 270px;
}

#prompt-buttons #promptNo {
  width: 250px !important;
  margin-top: 20px;
  margin-left: 10px;
}

@media (max-width: 600px) {
  #full-area #game-area #content {
    background: url("/media/games/hotel-detective/images/background-v3.png");
    background-position: bottom center;
    background-size: cover;
  }
  #full-area #game-area #content #home-section #logo {
    margin-top: 50px;
    margin-left: 10px;
  }
  #full-area #game-area #content #home-section #home-door1, #full-area #game-area #content #home-section #home-door2 {
    display: none;
  }
  #full-area #game-area #content #play-section #hotel-owner {
    width: 500px;
    transform: translateX(-50%) translateY(-100%) scale(1.4);
    margin-top: -45px;
    margin-left: 100px;
    position: absolute;
    z-index: 9;
  }
  #full-area #game-area #content #play-section #hotel-owner .buble {
    width: 80%;
    left: -230px;
    top: 0px;
  }
  #full-area #game-area #content #play-section #hotel-owner .buble p {
    font-size: 35px;
  }
  #full-area #game-area #content #play-section #progress-paper {
    position: absolute;
    z-index: 999;
  }
  #full-area #game-area #content #play-section #answer-section {
    top: 0px;
    left: -30px;
  }
  #full-area #game-area #content #play-section #answer-section #hd-video {
    height: 100%;
    width: auto;
    left: calc(50% - 150px);
    top: calc(50% - 0px);
  }
  #full-area #game-area #content #play-section #answer-section #room-video {
    position: absolute;
    left: 50%;
    top: 70px;
    transform: translate(-52%, 0%) scale(0.8);
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    pointer-events: none;
    z-index: 0;
  }
  #full-area #game-area #content #play-section #answer-section .door {
    top: 660px;
    transform: translate(-50%, -49%) scale(1.49);
  }
  #full-area #game-area #content #play-section #answer-section #room-overlay-bg {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    transform: none;
  }
  #full-area #game-area #content #play-section #answer-section #question-mark {
    margin-left: -40px;
  }
  #full-area #game-area #content #play-section #answer-section #culprit {
    margin-left: -15px;
  }
  #full-area #game-area #content #play-section #answer-section #room-number {
    top: -40px;
    transform: rotate(60deg);
  }
  #full-area #game-area #content #play-section #ghost-gun {
    display: none;
    opacity: 0;
  }
  #full-area #game-area #content #play-section #question-section {
    top: 450px;
    transform: scale(3);
  }
  #full-area #game-area #content #end-section .content p {
    top: 410px;
    font-size: 35px;
    line-height: 50px;
    width: 370px;
    margin-left: 10px;
  }
  #full-area #game-area #content #end-section .content p span {
    font-size: 50px;
  }
  #full-area #game-area #content #end-section .content #end-btns {
    top: 57%;
    margin-left: 5px;
    transform: translate(-50%, -100%) scale(1.4);
  }

  #prompt-buttons {
    bottom: 550px;
  }
}
@media (width: 960px) and (height: 480px) {
  #full-area #game-area {
    width: 960px;
    height: 480px;
  }
  #full-area #game-area #content {
    background: url("/media/games/hotel-detective/images/background.png");
    background-size: cover;
    background-position: bottom center;
  }
  #full-area #game-area #content .btnn {
    width: 250px;
    font-size: 25px;
  }
  #full-area #game-area #content #home-section #home-door1 {
    transform: scale(0.7);
    top: -45px;
    left: -120px;
    margin-top: -235px;
  }
  #full-area #game-area #content #home-section #home-door2 {
    transform: translateX(-100%) rotateY(180deg) scale(0.7);
    top: -45px;
    margin-top: -235px;
    margin-left: 70px;
  }
  #full-area #game-area #content #home-section #logo {
    height: 240px;
    max-height: 300px;
    margin-top: 10px;
  }
  #full-area #game-area #content #home-section #home-btns {
    width: 90%;
    margin-left: -1%;
    justify-content: space-around;
    display: flex;
    margin-top: 0px;
    transform: scale(0.6);
  }
  #full-area #game-area #content #play-section #progress-paper {
    transform: scale(1);
  }
  #full-area #game-area #content #play-section #progress-paper .content {
    width: 517px;
    height: 330px;
    top: 51%;
  }
  #full-area #game-area #content #play-section #progress-paper .content #magnify-glass {
    width: 110px;
    left: 82%;
  }
  #full-area #game-area #content #play-section #progress-paper .content h1 {
    font-size: 45px;
    top: 50px;
    margin-left: 15px;
  }
  #full-area #game-area #content #play-section #progress-paper .content #underline {
    width: 300px;
    display: flex;
    margin: 0 auto;
    opacity: 0.9;
    margin-top: 40px;
  }
  #full-area #game-area #content #play-section #progress-paper .content #checked-rooms {
    display: flex;
    flex-wrap: wrap;
    width: 65%;
    position: relative;
    left: 20%;
    font-size: 50px;
  }
  #full-area #game-area #content #play-section #progress-paper .content #checked-rooms p {
    margin: 0 10px;
    color: red;
    text-decoration: line-through;
    text-decoration-color: black;
    text-decoration-thickness: 2px;
    /* Adjust the thickness of the line */
    text-decoration-style: wavy;
  }
  #full-area #game-area #content #play-section .content {
    width: 1280px;
    height: 800px;
    top: -170px;
    left: -155px;
    position: absolute;
    transform: scale(0.65);
  }
  #full-area #game-area #content #play-section .content #score {
    top: 40px;
    left: -110px;
  }
  #full-area #game-area #content #play-section .content #question-section {
    display: flex;
    width: 120%;
    justify-content: space-between;
    position: absolute;
    top: 140px;
    left: -10%;
  }
  #full-area #game-area #content #play-section .content #answer-section {
    width: 125%;
    justify-content: center;
    position: absolute;
    top: -35px;
    left: -15%;
    height: 100%;
    display: none;
  }
  #full-area #game-area #content #play-section .content #answer-section #room-video {
    position: absolute;
    left: 50%;
    top: -105px;
    transform: translate(-52%, 0%) scale(0.87);
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    pointer-events: none;
    z-index: 0;
    display: none;
  }
  #full-area #game-area #content #play-section .content #answer-section #room-overlay-bg {
    position: absolute;
    left: 0;
    top: -225px;
    transform: none;
    width: 100%;
    height: calc(100% + 135px);
    padding: 20px;
    background: url("/media/games/hotel-detective/images/background-v6.png");
    background-size: cover;
    background-position: bottom center;
    pointer-events: none;
    z-index: 1;
    transition: background 0.3s ease;
  }
  #full-area #game-area #content #play-section .content #answer-section #room-overlay-bg.black {
    background: url("/media/games/hotel-detective/images/background-v6.png") black;
    background-size: cover;
    background-position: bottom center;
  }
  #full-area #game-area #content #play-section .content #answer-section #hd-video {
    position: absolute;
    left: 50%;
    top: calc(50% + 50px);
    transform: translate(-50%, -50%);
    z-index: -1;
    pointer-events: none;
    z-index: 99999;
    width: 100%;
  }
  #full-area #game-area #content #play-section .content #answer-section #culprit, #full-area #game-area #content #play-section .content #answer-section #question-mark {
    position: absolute;
    width: 250px;
    height: 400px;
    top: 100px;
    left: 50%;
    transform: translateX(-50%) scale(0);
    opacity: 0;
    z-index: 19;
  }
  #full-area #game-area #content #play-section .content #answer-section #culprit img, #full-area #game-area #content #play-section .content #answer-section #question-mark img {
    max-width: 80%;
    max-height: 80%;
    position: relative;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin-left: 10px;
  }
  #full-area #game-area #content #play-section .content #answer-section #question-mark {
    animation: scale 1s infinite;
    left: 40.5%;
  }
  #full-area #game-area #content #play-section .content #answer-section #room-number {
    position: absolute;
    left: 220px;
    top: 95px;
    z-index: 3;
  }
  #full-area #game-area #content #play-section .content #answer-section #room-number img {
    width: 300px;
  }
  #full-area #game-area #content #play-section .content #answer-section #room-number p {
    font-family: f2;
    color: black;
    font-size: 100px;
    transform: rotate(-15deg);
    position: relative;
    left: 30px;
    top: -50px;
  }
  #full-area #game-area #content #play-section .content #answer-section .door {
    z-index: 4;
    position: relative;
    left: calc(50% - 5px);
    transform: translate(-50%, -25px) scale(1.18);
  }
  #full-area #game-area #content #play-section .content #hotel-owner {
    top: 77%;
  }
  #full-area #game-area #content #end-section .content {
    position: relative;
    top: 0%;
    left: 48%;
    height: 89%;
    background-size: cover;
    transform: translate(-50%, -50%);
    margin-left: 2px;
    margin-top: -25px;
  }
  #full-area #game-area #content #end-section .content p {
    width: 230px;
  }
  #full-area #game-area #content #end-section .content #logo2 {
    height: 50%;
    margin-top: -2%;
  }
  #full-area #game-area #content #end-section .content #end-btns {
    transform: translate(-50%, -50%) scale(0.6);
    margin-top: 80px;
  }
  #full-area #game-area #content #end-section .content #end-btns img {
    height: 75px;
  }
  #full-area #game-area #content #scoreboard-section h1 {
    font-size: 30px;
    -webkit-text-stroke: 1px darkred;
    left: 60%;
    top: 10%;
  }
  #full-area #game-area #content #scoreboard-section #scores {
    width: 1000px;
    transform: translate(-50%, -50%) scale(0.65);
  }
  #full-area #game-area #content #scoreboard-section #back-btn {
    margin: -10px 0px;
    transform: translate(-100%, -100%) scale(0.8);
  }
}
/*# sourceMappingURL=index.css.map */

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