*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
	font-family: 'Exo', sans-serif;
	
}

		 #YandexRTB {
position: absolute;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    top: 95%;
    max-width: 95%;
    max-height: 9%;
}

body{
    /*font-family: 'Exo', sans-serif;*/
    background: #d4e0ee;
    background-size: cover;
	background: linear-gradient(115deg, rgba(101,151,209,0.9),rgba(202,102,211,0.9)),url(quizbg.png);
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
	
		-webkit-touch-callout: none; /* iOS Safari */
	-webkit-user-select: none;   /* Chrome/Safari/Opera */
	-khtml-user-select: none;    /* Konqueror */
	-moz-user-select: none;      /* Firefox */
	-ms-user-select: none;       /* Internet Explorer/Edge */
	user-select: none;           /* Non-prefixed version, currently not supported by any browser */
}
img{
    width: 5.5rem;
    height: 5.2rem;
    border-radius: 50%;
}
.img{
    position: fixed;
}
#title{
    text-align: center;
    padding: 0.8rem 0;
    font-size: 3rem;
    color: rgba(0, 0,0, 0.45);
    background: rgba(255, 255, 255, 0.45);
    font-family: 'Exo', sans-serif;
	font-style: oblique;
	
}
.questions{
    margin: 3rem auto;
    width: 90vw;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.45);
    cursor: default;
    border-radius: 30px 10px;
	font-family: 'Exo', sans-serif;
	font-style: oblique;
}
#question{
    margin-bottom: 1rem;
}
.option{
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    border-bottom: solid 0.1rem blue;
    width: 100%;
	border: 1px solid #84c5fe;
    background: rgba(0, 123, 255, 0.45);
	border: 1px solid #b0c4d8;
    border-radius: 5px;
	font-family: 'Exo', sans-serif;
	font-style: oblique;
}
.option:hover{
    color: black;
}
ol{
    position: relative;
    padding: 0 1.5rem;
    color: black;
}
span{
    display: block;
    padding: 0.1rem 0.7rem;
    border-radius: 5px;
}
#answer{
    margin-top: 2.5rem;
}
#stat{
    margin-top: 1.5rem;
    color: #000000;
}
.buttons{
    text-align: center;
}
button{
    padding: 0.2rem 1.5rem;
    border: none;
    outline: none;
    font-size: 1.5rem;
    border-radius: 20px 5px;
    color: #fff;
    background: rgba(0, 123, 255, 0.45);
}
button:active{
    background: rgba(0, 123, 255, 0.45);
}
#scoreboard,#answerBank{
    width: 20rem;
	max-height: 20rem;
	overflow: auto;
    background: rgba(230,230,250,0.77);
    padding: 2rem;
    text-align: center;
    margin: auto;
    position: relative;
    top: 5rem;
    display: none;
}

#answerBank::-webkit-scrollbar {
  width: 10px;
  background-color: #f9f9fd;
}

#answerBank::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: #18aaaa;
}

#answerBank::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.2);
  border-radius: 5px;
  background-color: #f9f9fd;
}

#score-title{
    margin: 1rem 0;
}
#score-btn,#check-answer{
    margin-top: 1rem;
}
#score{
    font-size: 2.5rem;
}
#answerBank li{
    text-align: left;
    margin-bottom: 0.2rem;
    font-size: larger;
}
#answers{
    margin-top: 1rem;
}