body {
	margin: 0;
	font-family: 'Open Sans', sans-serif;
	background-color: #FCFCFC;
	color: #0B011C; /* dark purple */
	text-align: left;
}

#toc {
	background: #685C7C; /* lavender */
	color: #FCFCFC; /* almost white */
	margin-top: 0px;
	max-width: 1024px;
	padding: 1px 0px 18px 0px; /* top, right, bottom, left */
}

#toc h2 {
	margin-left: 10%;
}

#toc ul#root {
	margin-left: 10%;
	margin-right: 10%;
}

#toc a {
	text-decoration: none;
}

/* unvisited link */
#toc a:link {
	color: #FCFCFC; /* almost white */
}

/* visited link */
#toc a:visited {
	color: #D6BDFF; /* V-boosted lavender */
}

/* mouse over link */
#toc a:hover {
	color: #402172; /* purple */
}

/* selected link */
#toc a:active {
	color: #ACC18A; /* muted green */
} 

#backtotop {
	display: none; /* Hidden by default */
	position: fixed; /* Fixed/sticky position */
	bottom: 20px; /* Place the button at the bottom of the page */
	right: 30px; /* Place the button 30px from the right */
	z-index: 99; /* Make sure it does not overlap */
}

.roundButton {
	border: none; /* Remove borders */
	outline: none; /* Remove outline */
	background-color: #685C7C; /* lavender */
	color: #FCFCFC; /* almost white */
	cursor: pointer; /* Add a mouse pointer on hover */
	padding: 15px; /* Some padding */
	border-radius: 10px; /* Rounded corners */
	font-size: 18px; /* Increase font size */
}

#backtotop:hover {
	background-color: #2B2930; /* Add a dark gray background on hover */
}
