
body {
	min-height: 100vh;
	margin: 0;
	display: grid;
	grid-template-rows: auto 1fr auto;
}

header {
min-height: 50px;
background: lightcyan;
}

footer {
min-height: 50px;
background: PapayaWhip;
}

button:hover {
	background: #8bdcda;
	cursor: pointer;
}

.monster-cont{
	border: 2px solid #000000;
	padding: 1em;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	margin-top: 10px;
	margin-bottom: 10px;
	scroll-margin: 20px;
}

.RM-question{
	/* border-top: 1px solid #9f9d9d; */
	/* color: rgb(36, 94, 231); */
	padding: 5px;
    margin: 1em;
	width: 100%;
	/* visibility: hidden; */
}
.selected{
	/* background-color: #fff292; */
    font-size: 1.5em;
}

.unselected{
    color: #7e7e7e;
	display: none;
}

#RM-tokens{
    width: 100%;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

#monster{
	display: inline;
    height: 70vh;
    object-fit: contain;
}

.logo{
	height: 150px; 
	margin: 10px; 
	margin-bottom: 30px;
	max-width: 100%;
	max-height: 300px;

}

.options{
	margin: 5px;
}

.main-option{
	font-size: 1.3em !important;
}

/* #monster{
	height: 100vh;
} */
.otp-countdown{
	display: inline-block;
	margin: 0 auto;
	padding: 8px 30px;
	background-color: #333;
	border-radius: 50px;
	color: #fff;
}

.monster-cont{
	display: none;
}

#timer-container{
	margin: 5px;
}

.disabled-btn{
	color: #7e7e7e;
	cursor: wait !important;
	pointer-events: none;
}

#spinner{
	height: 25px;
}

.playerName{
	font-size: 1.3em;
	letter-spacing: 2px;
}

.playerCell button:hover{
	border: 2px solid #ffffff;
}

/* .bunny{
    -moz-user-select: none;
    -webkit-user-select: none;
    user-select: none;
} */

/* --------------- FONTS --------------- */

.creepster-regular {
	font-family: "Creepster", serif;
	font-weight: 400;
	font-style: normal;
	font-size: 1em;
	word-spacing: 10px;
}

.butcherman-regular {
font-family: "Butcherman", system-ui;
font-weight: 400;
font-style: normal;
font-size: 1em;
word-spacing: 10px;
}

	

/* --------------- SPINNER --------------- */

.lds-facebook,
.lds-facebook div {
  box-sizing: border-box;
}
.lds-facebook {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-facebook div {
  display: inline-block;
  position: absolute;
  left: 8px;
  width: 16px;
  background: currentColor;
  animation: lds-facebook 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
}
.lds-facebook div:nth-child(1) {
  left: 8px;
  animation-delay: -0.24s;
}
.lds-facebook div:nth-child(2) {
  left: 32px;
  animation-delay: -0.12s;
}
.lds-facebook div:nth-child(3) {
  left: 56px;
  animation-delay: 0s;
}
@keyframes lds-facebook {
  0% {
    top: 8px;
    height: 64px;
  }
  50%, 100% {
    top: 24px;
    height: 32px;
  }
}

