@charset "utf-8";

@font-face{
	font-family: Rubric;
	font-style: normal;
	font-weight: normal;
	src:url(../__fonts/Cabin-Bold.ttf);
}

@font-face{
	font-family: Ans;
	font-style: normal;
	src:url(../__fonts/Roboto-Regular.ttf);
}
@font-face{
	font-family: Title;
	font-style: normal;
	font-weight: normal;
	src:url(../__fonts/MyriadPro-Semibold_2.otf);
}

div, input{
    font-variant-ligatures: none;
}

body{
	margin:0px;
	padding:0px;
	-webkit-user-select:none;
	-moz-user-select:none;
}

#main{

}

.startButton{
	position: relative;
	padding: 15px 30px;
    font-size: 24px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#hud{
	position: absolute;
	width: 100%;
	display: flex;
	justify-content: space-between;
	padding: 18px;
	box-sizing: border-box;
	/* background-color: #fbc472; */
	font-family: Ans;
	font-size:25px;
	font-weight: bold;
	color: #5814f2;
	z-index: 1;
	background-image: url('../Assets/images/boder.jpg');
	background-size: cover;
}


.multipleBtns{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 309px;
	height: 111px;
	font-family: Ans, sans-serif;
	font-size: 2rem;
} 

#chooseScr{
	position: absolute;	
	background-image: url('../Assets/images/bgg.jpg');
	background-repeat: no-repeat;
	background-size:100% 100%;	
	top: 0vh;
	height: 100%;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-around;
	z-index: 99;
}


.customButton{
	background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255,255,255,1)), to(rgba(255,255,255,0)));
	background-image: -webkit-linear-gradient(top, rgba(255,255,255,1), rgba(255,255,255,0));	
	background-color: #ddd;
	top: 550px;
	left: 500px;
	cursor: pointer;
}

.quesTxt{
	display:inline-block;
	margin-top:0px;
	margin-bottom:25px;
	margin-left: 40px;
	max-width:80%;
	background-color:#fff;
	padding:10px;
	border:3px solid #F29B34;
}

.frontPage{
	position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
	flex-direction: column;
	justify-content: center;;
    align-items: center;
    background-image: url('../Assets/images/frontCover.jpg');
	background-size: cover;	
}

#gameOverScreen{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    background-color: rgba(256, 256, 256, 0.6);
}

.timerDiv{
	position:absolute;
	box-shadow: 3px 3px 7px #726d6d, inset 0px 0px 7px rgb(192, 178, 157);
	border: 2px solid #FFF;
	border-radius:5px;
	width:50px;
	padding: 20px;
	margin-left: 87%;
	background-color:rgba(255, 218, 150, 0.6);
	text-align:center;
	font-size:20px;
	font-weight:bold;
	-webkit-transition: border-radius 0.6s, background-color 1s;
	transition: border-radius 0.6s, background-color 1s;
}

.blink{
    animation:blink 1s infinite;
}
.fastBlink{
    animation:blink 0.5s infinite;
}

@keyframes blink {
    from {background-color:#fff;}
    to {background-color: red;}
}


.graph{
	position: absolute;
	pointer-events:none;
    background-image: linear-gradient(to right, #fff 1px, transparent 1px), linear-gradient(to bottom, #fff 1px, transparent 1px);
}

#canvas {
    touch-action: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
	width: 100%;
	height: 100%;
}

.cap{
	position: absolute;
	z-index: 999;
	top: 10%;
	left: 18%;
    right: 17%;
	font-size: 2.5rem;
	font-style: italic;
	font-weight: 900;
	color: antiquewhite;
}

.smallPg{
	 backdrop-filter: blur(5px) saturate(152%);
    -webkit-backdrop-filter: blur(5px) saturate(152%);
    background-color: rgba(255, 255, 255, 0.26);
    border-radius: 12px;
    border: 1px solid rgba(209, 213, 219, 0.3);
}

#gameOverScreen button{
	display: none;
}

#scorebg{
	background: white;
    padding: 10px;
    border-radius: 20px;
}

.selOpt-Correct{
	color: rgb(0, 255, 0);
}

.selOpt-Wrong{
	color: rgb(255, 42, 42);
}

#timerObj{
	position:absolute;
	height:25px;
    top: 10px;
	font-size:20px;
	font-weight:bold;
	border:#9c9205 solid 2px;
	color:#000;
	text-align:center;
	padding:5px;
	font-family: Rubric;
	line-height:25px;
	background:white;
	/* left: 50%;
    transform: translateX(-50%); */
	z-index: 1000;
}