body {
	background-color: white;
}

.button {
	background-color: slateblue;
	border: 0px solid slateblue;
	color: white;
	padding: 14px 26px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 16px;
	margin: 4px 2px;
	transition-duration: 0.4s;
	cursor: pointer;
}

.button:hover {
	background-color: rgba(105, 90, 205, 0.85);
	color: slateblue;
}

.link:link {
	color: white;
	text-decoration: none;
}

.link:visited {
	color: white;
	text-decoration: none;
}

.footer {
	position:fixed;
	bottom:0px;
}

h1 {
	color: black;
	margin-left: 15%;
	margin-right: 15%;
	font-family: 'Roboto', sans-serif;
}

h5 {
	color: black;
	margin-left: 350px;
	margin-right: 350px;
	font-family: 'Montserrat', sans-serif;
}

h3 {
	color: black;
	text-align: center;
	margin-left: 20%;
	margin-right: 20%;
	font-family: 'Montserrat', sans-serif;
	font-weight: bold;
}

h2 {
	color: black;
	margin-left: 20%;
	margin-right: 20%;
	font-family: 'Montserrat', sans-serif;
}

h4 {
	color: black;
	margin-left: 20%;
	margin-right: 20%;
	font-family: 'Montserrat', sans-serif;
	font-weight: normal;
}

p {
	color: black;
	text-align: left;
	margin-left: 15%;
	margin-right: 15%;
	font-family: 'Montserrat', sans-serif;
}

b {
	color: black;
	font-family: 'Montserrat', sans-serif;;
}

dl {
	color: black;
	text-align: left;
	margin-left: 15%;
	margin-right: 15%;
	font-family: 'Montserrat', sans-serif;
}

dt {
	font-weight: bolder;
}

hr {
	color: black;
	width: 75%;
}

ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	overflow: hidden;
	background-color: #333;
	position: sticky;
	top: 0;
	width: 100%;
}

li {
	float: left;
	font-family: 'Roboto', sans-serif;
	border-right: 1px solid #bbb;
}

li a {
	display: block;
	color: white;
	text-align: center;
	padding: 14px 26px;
	text-decoration: none;
	transition-duration: 0.2s;
}

li a:hover {
	background-color: SlateBlue;
}

.active {
	background-color: SlateBlue;
}

li:last-child {
  border-right: none;
	float: right;
}

@media screen and (max-width: 400px) {
	ul {
  	list-style-type: none;
  	margin: 0;
  	padding: 0;
  	width: 100%;
  	background-color: #f1f1f1;
		overflow: auto;
	}

	li {
			border-right: 0px solid #bbb;
			float: center;
	}

	li:last-child {
		float: center;
	}

	li a {
  	display: block;
  	color: #000;
  	padding: 16px 16px;
  	text-decoration: none;
		text-align: center;
	}

	li a:hover {
  	background-color: #555;
  	color: black;
	}

	.button {
		background-color: SlateBlue;
		border: none;
		color: white;
		padding: 15px 32px;
		text-align: center;
		text-decoration: none;
		display: inline-block;
		font-size: 16px;
		border-radius: 4px;

	}
	
	.button:hover {
		background-color: SlateBlue;
		color: white;
	  }
}
