
body {
	margin: 0;
	height: 100vh;
	overflow: hidden;
}

html {
	height: 100%;
}

.page-container {
	display: flex;
	height: 100%;
	background-color: #FFFFFF;
}

#sidebar {
	background-color: rgba(0, 38, 255, 0.3);
	flex: 0 0 250px;
	height: 100%;
	max-width: 320px;
	min-width: 200px;
	padding: 10px;
	text-align: center;
}

#main {
	flex: 1;
	margin: 0px;
	padding: 20px;
	overflow: auto;
	height: 100%;
	background-color: transparent;
	background-image: url("background2.gif");
  	background-repeat: no-repeat;
	background-position: left top;
	background-size:cover;
	color: #0026FF;
}

img {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.image-banner {
	display: block;
	margin-left: auto;
	margin-right: auto;
	width: 100%;
	max-width: 1200px;
	border-radius: 8px;
}

h1, h4, h6 {
  	text-align: center;
}

h3 {
  	color: #000000;
}


a:link, a:visited {
  	color: #0026FF;
 	background-color: transparent;
  	text-decoration: underline;
}

a:hover {
  	color: red;
  	background-color: transparent;
  	text-decoration: underline;
}

a:active {
  	color: yellow;
  	background-color: transparent;
  	text-decoration: underline;
}

.nav-container {
	text-align: center;
}

.nav-heading {
	font-weight: bold;
	margin-top: 20px;
	margin-bottom: 5px;
	margin-left: 10px;
	margin-right: 10px;
}

.nav-menu {
	display: inline-block;
	list-style: none;
	padding: 0;
	margin: 0;
}

.nav-item {
	background-color: #0026FF;
	padding: 5px;
	margin: 4px;
	width: 180px;
	text-decoration: none;
	cursor: pointer;
}

.nav-item:hover {
	background-color: #293caa;
}

.nav-link:link, .nav-link:visited {
	color: #7FC9FF;
	display: block;
	text-decoration: none;
	font-family: Arial, Helvetica, sans-serif;
	font-size: .9em;
	cursor: pointer;
}

.nav-link:hover {
	color: #ffffff;
}

.button {
	background-color: #0026FF;
	border: none;
	color: #7FC9FF;
	padding: 15px 32px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 20px;
	margin: 4px 2px;
	cursor: pointer;
}

.button1 {
	width: 180px;
	background-color: #0026FF;
	border: none;
	color: #7FC9FF;
	padding: 5px 10px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 10px;
	margin: 2px 1px;
	cursor: pointer;
}

.button2 {
	background-color: #0026FF;
	border: none;
	color: #7FC9FF;
	padding: 15px 32px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 16px;
	margin: 2px 1px;
	cursor: pointer;
}

