@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@400;500&display=swap");
body {
  padding: 0;
  margin: 0;
}

#full-area {
  width: 100%;
  height: 100vh;
  background: url("media/bg.jpg");
  background-size: cover;
  font-family: "Rubik", sans-serif;
  margin: 0;
  position: absolute;
  top: 50%;
  -ms-transform: translateY​(-50%);
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  min-height: 650px;
}
#full-area #game-area {
  width: 90%;
  max-width: 800px;
  background: white;
  border-radius: 5px;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.36);
  padding: 50px 20px;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  -ms-transform: translateY​(-50%);
  transform: translateY(-50%);
  border-bottom: 10px solid #2a57d4b9;
}
#full-area #game-area #game2 #description {
  display: none;
}
#full-area #game-area #game2 #description p {
  text-align: center;
  font-size: 30px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.877);
}
#full-area #game-area #game2 #description #description-buttons {
  width: 100%;
}
#full-area #game-area #game2 #description #description-buttons div {
  background: #3369ff;
  border-bottom: 5px solid #2a57d4;
  text-align: center;
  color: white;
  font-size: 25px;
  height: 50px;
  width: 100%;
  cursor: pointer;
  justify-content: center;
  margin: 0 auto;
  font-weight: 500;
  padding-top: 7px;
  border-radius: 3px;
  margin: 20px 5px 0 5px;
  justify-content: center;
  margin: 0 auto;
}
#full-area #game-area #game2 #description #description-buttons div:hover {
  transition: 0.3s;
  filter: brightness(1.2);
}
#full-area #game-area #game2 #description #description-buttons div:nth-child(1) {
  width: 60%;
}
#full-area #game-area #game2 #description #description-buttons div:nth-child(2) {
  width: 30%;
}
#full-area #game-area #game2 #play-game2 {
  user-select: none;
}
#full-area #game-area #game2 #play-game2 p {
  display: none;
  text-align: center;
  font-size: 30px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.877);
}
#full-area #game-area #game2 #play-game2 #timing {
  display: none;
  font-size: 23px;
  font-weight: 500;
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
  margin-top: -20px;
  color: rgba(0, 0, 0, 0.877);
}
#full-area #game-area #game2 #play-game2 #env {
  display: none;
  height: 150px;
  justify-content: center;
  margin: 0 auto;
  width: 90%;
  border: 2px solid #2a57d4;
  border-radius: 3px;
  margin-top: 20px;
  overflow: hidden;
  position: relative;
}
#full-area #game-area #game2 #play-game2 #env #main {
  width: 70px;
  height: 64px;
  background: url("media/fly.png");
  background-size: cover;
  position: absolute;
  top: 50%;
  margin-top: -32px;
  margin-left: 20px;
  z-index: 99999;
}
#full-area #game-area #game2 #play-game2 #env #obstacles .circle, #full-area #game-area #game2 #play-game2 #env #obstacles .square, #full-area #game-area #game2 #play-game2 #env #obstacles .triangle {
  width: 120px;
  height: 120px;
  background-image: url("media/obstacles/red-square.png");
  background-size: cover;
  top: 50%;
  position: absolute;
  margin: 0;
  margin-top: -60px;
  left: 100%;
}
#full-area #game-area #game2 #play-game2 #env #obstacles .cloud {
  width: 205px;
  height: 80px;
  background-image: url("media/obstacles/red-cloud.png");
  background-size: cover;
  top: 50%;
  position: absolute;
  margin: 0;
  margin-top: -40px;
  left: 100%;
}
#full-area #game-area #game2 #play-game2 #game2-loader {
  height: 0;
  width: 100%;
  margin-bottom: 20px;
  display: none;
}
#full-area #game-area #game2 #play-game2 #game2-loader .lds-ring {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
  justify-content: center;
  margin: 0 auto;
  left: 50%;
  margin-left: -20px;
}
#full-area #game-area #game2 #play-game2 #game2-loader .lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 30px;
  height: 30px;
  margin: 8px;
  border: 5px solid #2a57d4;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #2a57d4 transparent transparent transparent;
}
#full-area #game-area #game2 #play-game2 #game2-loader .lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}
#full-area #game-area #game2 #play-game2 #game2-loader .lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}
#full-area #game-area #game2 #play-game2 #game2-loader .lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}
@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#full-area #game-area #game2 #play-game2 #game2-over {
  text-align: center;
  display: none;
}
#full-area #game-area #game2 #play-game2 #game2-over span {
  font-weight: bold;
}
#full-area #game-area #game2 #play-game2 #game2-over div {
  margin-top: 10px;
  width: 100%;
  display: flex;
  justify-content: center;
}
#full-area #game-area #game2 #play-game2 #game2-over div div {
  background: #3369ff;
  border-bottom: 5px solid #2a57d4;
  text-align: center;
  color: white;
  font-size: 25px;
  height: 50px;
  cursor: pointer;
  justify-content: center;
  font-weight: 500;
  padding-top: 7px;
  border-radius: 3px;
  margin: 20px 5px 0 5px;
  justify-content: center;
}
#full-area #game-area #game2 #play-game2 #game2-over div div:hover {
  transition: 0.3s;
  filter: brightness(1.2);
}
#full-area #game-area #game2 #play-game2 #game2-over div div:nth-child(1) {
  width: 40%;
}
#full-area #game-area #game2 #play-game2 #game2-over div div:nth-child(2) {
  width: 20%;
}

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