@font-face {
  font-family: f1;
  src: url("media/Nimbus Sans Becker DExt Bold.ttf");
}
@font-face {
  font-family: f2;
  src: url("media/NimbusSanL-Reg.otf");
}
body {
  margin: 0;
  padding: 0;
  touch-action: none;
  user-select: none;
}

#full-area {
  width: 100%;
  height: 100vh;
  background: #000;
  overflow: hidden;
  touch-action: none;
  user-select: none;
  font-family: f1;
  letter-spacing: 1px;
}
#full-area #game-area {
  position: absolute;
  width: 100%;
  height: 100%;
  max-width: 500px;
  background: #597fe1;
  top: 0;
  left: 0;
  transform: none;
  overflow: hidden;
  left: 50%;
  transform: translateX(-50%);
}
#full-area #game-area #home-page {
  width: 100%;
  height: 100%;
  position: absolute;
}
#full-area #game-area #home-page #home-img {
  width: 100%;
  position: relative;
  margin-top: 35%;
}
#full-area #game-area #home-page #home-btn {
  top: 0;
  left: 0;
  width: 32%;
  margin-top: -7%;
  position: relative;
  z-index: 2;
  margin-left: 4%;
  cursor: pointer;
  border-radius: 200px;
  display: none;
}
#full-area #game-area #home-page #home-btn:hover {
  filter: brightness(1.1);
  transform: scale(1.03);
  transition: 0.1s;
}
#full-area #game-area #instructions-page {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 20;
  background-color: #2e4182e9;
}
#full-area #game-area #instructions-page #instructions-img {
  height: 80%;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#full-area #game-area #instructions-page #instructions-start-btn {
  width: 35%;
  border-radius: 200px;
  justify-content: center;
  display: flex;
  margin: 0 auto;
  margin-top: 16%;
  cursor: pointer;
  position: relative;
  z-index: 20;
}
#full-area #game-area #instructions-page #instructions-start-btn:hover {
  filter: brightness(1.1);
  transform: scale(1.03);
  transition: 0.1s;
}
#full-area #game-area #questions-page {
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: #384b8e;
  z-index: 20;
  display: none;
}
#full-area #game-area #questions-page #deco1 {
  width: 120%;
  position: absolute;
  top: 100%;
  transform: translateY(-49%);
}
#full-area #game-area #questions-page #question {
  height: 18%;
  margin-top: 25%;
  position: absolute;
  width: 100%;
}
#full-area #game-area #questions-page #question p {
  color: white;
  font-size: 30px;
  font-family: f1;
  width: 90%;
  margin-left: 5%;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 35px;
  overflow: hidden;
  font-size: 20px;
  line-height: 25px;
  top: 50%;
  position: absolute;
  transform: translateY(-50%);
}
#full-area #game-area #questions-page #answer-section {
  width: 85%;
  height: 50%;
  background: #455fae;
  margin-left: 7.5%;
  position: absolute;
  top: 57%;
  transform: translateY(-50%);
}
#full-area #game-area #questions-page #answer-section #answers {
  width: 100%;
  height: 100%;
  position: absolute;
  padding: 5% 0;
}
#full-area #game-area #questions-page #answer-section #answers #answer {
  position: relative;
  width: 90%;
  margin-bottom: 4%;
  margin-left: 5%;
  background: #597fe1;
  height: 19%;
  display: flex;
}
#full-area #game-area #questions-page #answer-section #answers #answer #answer-text {
  width: 83%;
  height: 100%;
  overflow: hidden;
}
#full-area #game-area #questions-page #answer-section #answers #answer #answer-text p {
  color: white;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 7%;
  text-transform: uppercase;
  line-height: 17px;
}
#full-area #game-area #questions-page #answer-section #answers #answer .check {
  height: 30px;
  width: 30px;
  background: white;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  margin-left: 2%;
}
#full-area #game-area #questions-page #answer-section #answers #answer .check img {
  position: absolute;
  width: 90%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
}
#full-area #game-area #questions-page #answer-section #answers h6 {
  color: white;
  font-size: 20px;
  text-align: center;
  margin-top: 5%;
  font-family: f1;
  display: none;
}
#full-area #game-area #questions-page #answer-section h5 {
  color: white;
  position: absolute;
  transform: translate(-100%, -100%);
  font-size: 10px;
  text-align: center;
  left: 100%;
  width: 30%;
  margin-left: -2%;
  margin-top: -5.5%;
  top: 100%;
  display: none;
}
#full-area #game-area #questions-page #answer-section #submitAnswer-btn {
  width: 35%;
  border-radius: 200px;
  left: 50%;
  top: 100%;
  transform: translate(-50%, -100%);
  position: absolute;
  margin-top: -5%;
  cursor: pointer;
}
#full-area #game-area #questions-page #answer-section #submitAnswer-btn:hover {
  filter: brightness(1.1);
  transition: 0.1s;
}
#full-area #game-area #questions-page #incorrect-screen {
  width: 100%;
  height: 100%;
  position: relative;
  padding: 5% 0;
  background: #597fe1;
  z-index: 20;
  padding-top: 15%;
  display: none;
}
#full-area #game-area #questions-page #incorrect-screen p {
  color: white;
  padding: 0 5%;
  text-transform: uppercase;
  font-size: 22px;
  line-height: 25px;
  text-align: center;
}
#full-area #game-area #questions-page #incorrect-screen #correction {
  font-size: 20px;
}
#full-area #game-area #questions-page #incorrect-screen hr {
  margin: 10% 20%;
  background-color: white;
}
#full-area #game-area #questions-page #incorrect-screen img {
  position: absolute;
  top: 100%;
  transform: translateY(-100%) translateX(-50%);
  margin-top: -5%;
  left: 50%;
  width: 40%;
  cursor: pointer;
  border-radius: 200px;
}
#full-area #game-area #questions-page #incorrect-screen img:hover {
  filter: brightness(1.1);
  transition: 0.1s;
}
#full-area #game-area #end-screen {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 20;
  display: none;
  background: #5e81d9;
}
#full-area #game-area #end-screen #end-screen-content {
  width: 80%;
  height: 55%;
  margin-left: 10%;
  background: #8ca2db;
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  border: 15px solid #b9c2df;
}
#full-area #game-area #end-screen #end-screen-content #last-content {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
}
#full-area #game-area #end-screen #end-screen-content #medal-text {
  text-align: center;
  position: relative;
  width: 100%;
  margin-top: 0%;
  background: url("media/medal.png");
  background-size: cover;
  width: 100px;
  height: 132px;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 75px;
  color: white;
  letter-spacing: 0px;
}
#full-area #game-area #end-screen #end-screen-content h2 {
  color: white;
  text-align: center;
  font-size: 25px;
}
#full-area #game-area #end-screen #end-screen-content #stars {
  display: flex;
  justify-content: center;
  margin-top: 10%;
}
#full-area #game-area #end-screen #end-screen-content #stars img {
  width: 12%;
  opacity: 0.2;
}
#full-area #game-area #end-screen #end-screen-content hr {
  margin-top: 10%;
  background: white;
  height: 1px;
  width: 90%;
}
#full-area #game-area #end-screen #end-screen-content #social-media {
  display: flex;
  justify-content: space-around;
  padding: 0 15%;
}
#full-area #game-area #end-screen #end-screen-content #social-media img {
  width: 80%;
  margin-left: 5%;
  cursor: pointer;
}
#full-area #game-area #end-screen #end-screen-menu {
  width: 100%;
  position: relative;
  top: 100%;
  transform: translateY(-50%);
  background: #8ca2db;
  height: 30%;
  min-height: 235px;
  border-radius: 70px;
}
#full-area #game-area #end-screen #end-screen-menu #end-screen-menu-content {
  width: 100%;
  display: flex;
  justify-content: center;
}
#full-area #game-area #end-screen #end-screen-menu #end-screen-menu-content div {
  margin: 0 20px;
  position: relative;
  margin-top: 5%;
}
#full-area #game-area #end-screen #end-screen-menu #end-screen-menu-content img {
  border-radius: 100px;
  width: 50px;
  margin-left: 3px;
}
#full-area #game-area #end-screen #end-screen-menu #end-screen-menu-content p {
  text-align: center;
  font-size: 12px;
  color: white;
  line-height: 15px;
  margin-top: 5px;
  font-family: f2;
  text-transform: uppercase;
}
#full-area #game-area #play-page {
  display: none;
}
#full-area #game-area #play-page #countdown {
  color: white;
  font-size: 60px;
  width: 100%;
  text-align: center;
  top: 10%;
  position: absolute;
}
#full-area #game-area #play-page #menu-btn {
  position: absolute;
  left: 100%;
  transform: translateX(-100%);
  margin-top: 5%;
  margin-left: -5%;
  height: 45px;
  width: 45px;
  z-index: 3;
  border-radius: 100px;
  cursor: pointer;
  z-index: 200;
}
#full-area #game-area #play-page #menu-btn:hover {
  filter: brightness(1.1);
  transition: 0.2s;
}
#full-area #game-area #play-page #audio-btn, #full-area #game-area #play-page #quit-btn {
  height: 45px;
  width: 45px;
  border-radius: 100px;
  background: white;
  position: absolute;
  z-index: 200;
  left: 100%;
  transform: translateX(-100%);
  margin-top: 5%;
  top: 55px;
  margin-left: -5%;
  cursor: pointer;
  display: none;
}
#full-area #game-area #play-page #audio-btn svg, #full-area #game-area #play-page #quit-btn svg {
  width: 60%;
  height: 60%;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #5e81d9;
}
#full-area #game-area #play-page #audio-btn:hover, #full-area #game-area #play-page #quit-btn:hover {
  filter: brightness(1.1);
  transition: 0.2s;
}
#full-area #game-area #play-page #quit-btn {
  top: 110px;
}
#full-area #game-area #play-page #quit-btn svg {
  width: 50%;
  height: 50%;
}
#full-area #game-area #play-page #score-section {
  background: #81a2ea;
  position: absolute;
  height: 10%;
  width: 100%;
  top: 100%;
  transform: translateY(-100%);
  justify-content: space-between;
  display: flex;
  padding: 0 7%;
  z-index: 2;
  opacity: 0.8;
}
#full-area #game-area #play-page #score-section #score, #full-area #game-area #play-page #score-section #time {
  display: flex;
  position: relative;
  top: 50%;
  height: 25px;
  transform: translateY(-50%);
}
#full-area #game-area #play-page #score-section #score img, #full-area #game-area #play-page #score-section #time img {
  width: 25px;
  height: 25px;
  filter: brightness(9);
}
#full-area #game-area #play-page #score-section #score svg, #full-area #game-area #play-page #score-section #time svg {
  width: 20px;
  height: 25px;
  filter: brightness(9);
}
#full-area #game-area #play-page #score-section #score p, #full-area #game-area #play-page #score-section #time p {
  color: white;
  font-family: f2;
  padding-left: 5px;
  margin-top: -1px;
  font-size: 18px;
  font-weight: 200;
}
#full-area #game-area #play-page #score-section #lifes {
  display: flex;
  position: relative;
  top: 50%;
  height: 10px;
  transform: translateY(-50%);
}
#full-area #game-area #play-page #score-section #lifes div {
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background: white;
  margin: 0 2.5px;
}
#full-area #game-area #play-page #play-family-img {
  position: absolute;
  width: 70%;
  height: auto;
  left: 0;
  top: 0;
  transform: translate(0, 0);
}
#full-area #game-area #play-page #family-hurt {
  position: absolute;
  width: 75%;
  height: auto;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: none;
}
#full-area #game-area #play-page #virus div {
  width: 80px;
  position: absolute;
  left: 0;
  top: 0;
  transform: translateX(0px) translateY(0px);
  opacity: 1;
}
#full-area #game-area #play-page #virus div img {
  width: 100%;
}

@media (min-width: 500px) {
  #full-area {
    background: black;
  }
}
.lds-ring {
  display: inline-block;
  position: relative;
  width: 30px;
  height: 30px;
  transform: scale(1);
  margin-top: -6px;
  top: -30px;
  left: 40px;
}

.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 30px;
  height: 30px;
  border: 4px solid #384b8e;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #384b8e transparent transparent transparent;
}

.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 */
