@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;
	user-select: none;
	-webkit-user-select:none;
	-moz-user-select:none;
}

/* canvas{
	background-color:#5814f2;
	
} */

#gameBoard{
	margin: 0 auto;
}

h1, h2, h3{
	margin: 0;
}

#hud {
    position: absolute;
    width: 100%;
    top: 0;
    display: flex;
    justify-content: space-between;
    padding: 12px;
    box-sizing: border-box;
    background-color: rgb(28 45 11);
    font-family: Ans;
    font-size: 1.3rem;
    font-weight: bold;
    color: #ffffff;
}

#chooseScr{
	position: absolute;
	top: 0;
	display: flex;
	justify-content: space-evenly;
	align-items: center;	
	/* background: #64808d; */
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	box-shadow: 0 2px 2px 0 rgba(0,0,0,0.16), 0 0 0 1px rgba(0,0,0,0.08), inset 0 0 0 0 rgba(0,0,0,0.10), inset 0 0 0 0 rgba(255,255,255,0.50);
	background-image: url('../Assets/images/firstscr.jpg');
	background-repeat: no-repeat;
	background-size: 100% 100%;
	/* filter: brightness(0.7) contrast(1.2) !important; */
}

#container{
	display: flex;
	flex-direction: column;
	align-items: center;
	font-family: sans-serif;
    font-size: 1.2rem;
    line-height: 1.6rem;
}

#instruction{
	max-width: 700px;
    color: #fff;
    text-align: center;
}

#lstScreen{
	position: absolute;
    width: 100%;
    height: 100vh;
    display: flex;
	flex-direction: column;
    align-items: center;
    justify-content: center;
    top: 0;
    background-image: url(../Assets/images/background.jpg);
    /* background-size: cover; */
	background-repeat: no-repeat;
    background-size: 100% 100%;
}

#lstScreen div{
	font-size: 1.5rem;
	color: white;
}

#rePlay{
	width: 100px;
	height: 40px;
	margin-top: -150px;
}

.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;}
}

.customButton{
	/* margin-top: 50px; */
	margin-top: 205px;
    background-image: url(../Assets/images/start-button.png);
    background-size: contain;
    cursor: pointer;
    background-color: transparent;
    outline: none;
    box-shadow: none;
    background-repeat: no-repeat;
	width: 100px;
    height: 50px;
    border: none;
}
.scoreblue{
	margin: 0;
    top: 97px !important;
    position: relative;
    color: #00b6ff;
    /* left: 896px; */
	left: 50%;
    transform: translateX(-50%);
}

/*for responsive*/
@media only screen and (max-width: 940px) {
#hud {
	font-size: 1rem;
	}
.scoreblue {
    margin: 0;
    top: 115px !important;
    position: absolute;
    color: #00b6ff;
    /* right: 9px; */
	/* left: auto; */
	left: 50%;
    transform: translateX(-50%);
}}

#input1{
	caret-color: transparent;
	pointer-events: none;    
	user-select: none; 
	
}

#timerObj{
	position:absolute;
	height:25px;
	/* top: 10px; */
	bottom: 5px;
	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%);
}