body,
html {
  height: 100%;
  margin: 0;
  /*user-select: none;*/
}
#home {
  /*visibility: hidden;*/
  display: none;
}
#homeDiv{
  z-index:1000;
}

#background {
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow: hidden;
  user-select: none;
}
#playBtnDiv {
  bottom: 0;
  position: fixed;
}

#gamePage {
  display: none;
}

.nopadding {
  padding: 0 !important;
}

.spanClass {
  padding: 1vh;
  background-color: #8080805e;
  border-radius: 1vh;

}
.divParent {
  display: block;
  /* background-color: #6eb3b5; */
  text-align: center;
}
.parentSpan {
  display: inline-block;
  background-color: #b8d0cb21;
  margin: 1vh;
  font-size: 1.5vw;
  color: black;
  font-weight: bold;
  margin-top: 15vh;
}

.bottomclass {
  bottom: 0;
  position: fixed !important;
}

#sentenceDiv {
  margin-top: -5vh;
}
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 100px;
  background-color: rgba(0, 0, 0, 0.4);
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
}
.modal-content1 {
  background-color: rgba(1, 6, 15, 0.612);
  box-shadow: 17px 25px 14px rgb(0, 0, 0), inset -98px 0px 100px rgb(38, 59, 95);
}
#answerText {
  text-align: center;
  color: #ffffff;
  font-size: 4vw;
  margin-top: 12vw;
}

#gameOver {
  text-align: center;
  font-weight: bold;
  font-size: 2.5vw;
  color: white;
}

.fontClass {
  font-size: 1.3vw;
  margin-top: 1vh;
  color: black;
}
.firstLetter:first-letter {
  font-size: 1.5vw;
}

#acknowledgementDiv {
  margin-top: 4vh;
  background-color: aliceblue;
  border: 0.22vw solid black;
  border-radius: 3vw;
  text-align: center;
  display: none;
}

#startedDate {
  margin-bottom: 1vh;
}
#Maindiv {
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  /* overflow: hidden; */
  user-select: none;
  height: 40vh;
  margin-top: 4vh;
}

#bottomDiv {
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  /* overflow: hidden; */
  user-select: none;
  height: 30vh;
  position: fixed;
  bottom: 2vh !important;
}

.buttons {
  margin-top: 7vh;
  height: 10vh;
}
#boyDiv {
  margin-top: 5vh;
}
.buttonImages {
  height: 16vh;
}
.blink_me {
  animation: bounceCls 1.5s linear infinite;
}

@keyframes bounceCls {
  0%,
  20%,
  53%,
  80%,
  100% {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }
  40%,
  43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}
