@import url('https://fonts.googleapis.com/css?family=Montserrat:500&display=swap');
@import url('https://fonts.googleapis.com/css?family=Dancing+Script&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans&display=swap');

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
html {
	scroll-behavior: smooth;
}
body {
	background: url(../images/extra/b1.jpg);
	background-size: cover;
	font-family: 'Open Sans', sans-serif;
	color: #4a2f2a; /* Warm dark brown */
}

/* Styling Scrollbar */
::-webkit-scrollbar {
	width: 5px;
}
::-webkit-scrollbar-thumb {
	background: #FF7F50; /* Coral */
	border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
	background: #FF4500; /* Orange Red */
}

/* Navigation Bar */
.nav {
	width: 100%;
	background-color: #FFFAF0; /* Floral White */
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	padding: 20px 2%;
	position: fixed;
	top: 0px;
	z-index: 10;
	box-shadow: 1px 1px 10px rgba(0,0,0,0.3);
}

.nav li, a, button {
	float: left;
	font-family: "Montserrat", sans-serif;
	font-weight: 500;
	font-size: 13px;
	color: #8B4513; /* Saddle Brown */
	display: block;
	text-decoration: none;
	text-align: center;
}

.nav ul li img {
	width: 20px;
	margin-right: 10px;
	transform: translateY(5px);
	padding-top: 5px;
}

.nav ul li {
	list-style: none;
	display: inline-block;
	padding: 0px 20px;
}

.nav ul li a {
	transition: all 0.3s ease 0s;
}

.nav ul li a:hover {
	color: #FF7F50; /* Coral */
}

.nav button {
	padding: 9px 25px;
	background: linear-gradient(to right, #FF4500, #FF6347); /* Orange Red to Tomato */
	color: #fff;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	outline: none;
	transition: all 0.3s ease 0s;
}
#srchbtn {
	padding: 9px 20px;
}
#srchbtn img {
	width: 15px;
	filter: brightness(100);
}

.nav button:hover {
	opacity: .9;
}
.nav .search {
	float: right;
}
.nav .search .srch {
	font-size: 13px;
	width: 300px;
	border: none;
	outline: none;
	border-bottom: 2px solid #FF7F50; /* Coral */
	padding: 9px;
}

.nav .search button {
	margin-right: 5px;
	float: right;
	margin-left: 10px;
}
.nav .switch-tab {
	cursor: pointer;
	visibility: hidden;
}
.nav .switch-tab img {
	width: 20px;
}
.nav .check-box {
	cursor: pointer;
	visibility: hidden;
}

/* Title */
.title {
	margin-top: 18%;
	display: grid;
	justify-content: center;
	align-items: center;
}
.title span {
	font-weight: 700;
	font-family: 'Open Sans', sans-serif;
	font-size: 60px;
	color: #fff8dc; /* Warm Ivory */
}
.title .shortdesc {
	font-family: 'Open Sans', sans-serif;
	font-size: 20px;
	color: #f5deb3; /* Wheat */
	margin-bottom: 50px;
	text-align: center;
}

.title button {
	padding: 20px 2%;
	border: none;
	border-radius: 5px;
	color: #fff;
	background: #FF4500; /* Orange Red */
	outline: none;
	cursor: pointer;
	box-shadow: 0 0 50px rgba(0,0,0,0.5);
}
.title button:hover {
	box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

/* Panel */
.panel {
	display: none;
	width: 100%;
	height: 100vh;
	position: fixed;
}
/* Different Topics Container */
.left-side {
	background: #FFF5EE; /* Sea Shell */
	height: 100%;
	width: 25%;
	display: flex;
	justify-content: center;
	box-shadow: inset 0 0 20px rgba(0,0,0,0.3),
					0 0 30px rgba(0,0,0,0.2);
}

/* Google Form Container */
.right-side {
	background: #FFF;
	height: 100%;
	width: 75%;
}
.left-side ul {
	margin: 50px;
	margin-top: 150px;
}
.left-side li {
	list-style-type: none;
	cursor: pointer;
	color: #FF7F50; /* Coral */
	font-weight: 700;
	font-size: 1.2em;
	margin-bottom: 20px;
}
.left-side li:hover {
	color: #8B4513; /* Saddle Brown */
	font-size: 1.5em;
	font-weight: 900;
	transition: .3s ease-in-out;
}

#quiz-container {
	margin-top: 80px;
	width: 100%;
	height: 100%;
}

.quiz-frame {
	width: 100%;
	height: 95vh;
	border: none;
}
.main-frame {
	background: url(../images/extra/quiz.jpg);
	background-size: cover;
	background-position: center;
}
.main-frame p {
	font-size: 5em;
	font-weight: 900;
	color: #4a2f2a; /* Dark Warm Brown */
}

/* For Responsive Website */
@media screen and (max-width: 1366px) {
	.search {
		display: none;
		margin-bottom: 10px;
	}
}

@media screen and (max-width: 1000px) {
	.nav ul, .nav .search {
		display: none;
	}
	.nav #learned-logo {
		transition: 1s ease;
		margin-left: 40%;
		transform: scale(1.5);
	}
	.nav ul li {
		width: 100%;
		margin-bottom: 5px;
	}
	.nav .switch-tab {
		visibility: visible;
	}
	.nav .check-box {
		visibility: visible;
	}
	.search {
		visibility: visible;
		margin: 30px;
		margin-top: 0px;
	}
}
