
#queText{
  top: 4vh;
  height: 8vh;
  color: black;
  font-size: 2.4vw;
  font-weight: bold;
  text-align: center;
  user-select: none;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	overflow: hidden;
}

#gamePage{
    top: 3vh;
}
#questionDiv, .divBorder{
  padding: 8px;
    border-radius: 2vh;
    border: 1px solid black;
    box-shadow: 3px 3px 3px 3px;
}
#queImg, .imgCss{
  border-radius: 2vh;
} 
#ansOptionDiv{
   z-index: 2;
   margin-top: 10vh;
   right: 2vw;
}
.numberCss{
    height: 10vh;
    color: black;
    font-size: 2.4vw;
    font-weight: bold;
    /* text-align: center; */
    display: flex;
    align-items: center;
    justify-content: center;
}

#creditDiv{
	margin-top: 4vh;
}

.pulse{
  animation: pulse-black 1.5s infinite;
  }
  @keyframes pulse-black {
  0% {
  transform: scale(0.85);
  }
  70% {
  transform: scale(1);
  }
  100% {
  transform: scale(0.85);
  }
  }