/* Remember to put appropriate header in HTML files to keep this font */ 
* { 
	margin: 0;
	padding: 0;
}

html {
  font-family: "Inter", serif;
  font-optical-sizing: auto;
  font-style: normal;
}

p {
	line-height: 1.5;
}

body {
	min-height: 100vh; 
} 

.body-content ul { 
	margin-left: 4%;
} 

.body-content ol {
	margin-left: 4%;
}

.body-content * { 
	margin-bottom: 2%;
}


.inter {
	font-family: "Inter", serif;
	font-optical-sizing: auto;
	font-style: normal;
}

nav {
	margin: 0;
	background-color: #ba483c; 
	box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
}

nav ul {
	width: 100%;
	list-style: none;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

nav li {
	height: 7vh;
}

nav a {
	height: 100%;
	padding: 0 30px;
	text-decoration: none;
	display: flex;
	align-items: center;
	color: white;
}

nav a:hover { 
	background-color: #a74036;
}

nav li:first-child { 
	margin-right: auto;
}

.sidebar {
	position: fixed;
	top: 0;
	right: 0;
	height: 100vh;
	width: 250px;
	z-index: 999; 
	background-color: #ba483c;
	backdrop-filter: blur(10px);
	box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
	display: none;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
}

.sidebar li {
	width: 100%;
}

.sidebar a {
	width: 100%;
	color: white;
}
.exploreGrid { 
	display: grid;
	border-spacing: 2%;
	border-collapse: separate;
}

.exploreGrid td {
	padding: 2%;
}

.exploreGridCategoryTitle { 
	margin-bottom: 2%;
}

.exploreGridCaption {
	width: 80%;
}

/* horizontal scrolling area */
#exploreAreaByCategory, #exploreAreaByTopic {
	overflow: auto;
	white-space: nowrap;
}

.body-content {
	margin-left: 2%;
	margin-right: 2%;
	margin-bottom: 2%;
	margin-top: 2%;
}



#randomQuoteText, #randomQuoteAuthor {
	margin-bottom: 1%;
}

.hideOnMobile { 
	display: flex;	
}



@media screen and (max-width: 800px) { 
	.hideOnMobile {
		display: none;
	}
}

.collapsible {
	color: white;
	background-color: #ba483c; 
	width: 100%;
	outline: none;
	text-align: left;
}

.collapsible:hover {
	background-color: #943930;
}

.collaspibleContent: {
	background-color: #f9f7f5;
}

.definitionTooltip {
	position: relative;

	/* indicates that help is available on-hover */
	cursor: help;

	/* hint that this element is interactive */
	text-decoration-line: underline !important;
	text-decoration-style: dotted !important;
}
