@import url(colors.css);
@import url(https://fonts.googleapis.com/css?family=Nunito);

#accordian {
	background: #004050;
	width: 100%;
	height: fit-content;
	margin: 100px auto 0 auto;
	color: white;
	/*Some cool shadow and glow effect*/
	box-shadow: -1px 5px 16px 1px rgb(0 0 0 / 60%), 0 0 200px 1px rgb(255 255 255 / 24%);
}

#note {
    font-size: 8px;
    line-height: 17px;
    display: block;
    padding: 0 10px;
    text-align: center;
}

sup{
	vertical-align: bottom;
	font-size: xx-small;
}
@media (min-width: 768px) {

	#accordian {
		width: 39%;
	}
	#accordian h1 {
		text-align: left;
	}

	#accordian ul li a {
		text-align: left;
	}
}

* {margin: 0; padding: 0;}
  body {
	width: 100%;
    background-color: var(--main-bg);
    color: var(--main-text)
  }
  

h1 {
	font-size: 17px;
	line-height: 27px;
	padding: 0 5px;
	cursor: default;
	/*fallback for browsers not supporting gradients*/
	background: linear-gradient(#003040, #001924);
	text-align: center;
}
/*heading hover effect*/
#accordian h1:hover {
	text-shadow: 0 0 1px rgba(255, 255, 255, 0.7);
}
#accordian h1 span {
	font-size: 16px;
	/* margin-right: 10px; */
}

#accordian li {
	list-style-type: none;
}
/*links*/
ul li a {
	color: white;
	text-decoration: none;
	font-size: 11px;
	line-height: 17px;
	display: block;
	padding: 0 10px;
	/*transition for smooth hover animation*/
	transition: all 0.22s;
	text-align: center;
}
/*hover effect on links*/
#accordian ul li a:hover {
	background: #003545;
	border-left: 5px solid lightgreen;
	line-height: 20px;
	padding: 3px 3px;
	font-size: 15px;
}