body{
	background-color: white;
	color:#555555;
	font: normal 16px Arial, Helvetica, sans-serif;
	line-height: 1.6em;
	margin: 0;
	overflow-x: hidden;
}

a{
	text-decoration: none;
	color: blue;
}

a:hover{
	color:red;
}

a:active{
	color: green;
}


.container{
	width: 90%;
	margin: auto;
	overflow: hidden;
}


.main-container {
	width: 100%;
	margin: auto;
	overflow: hidden;
}

.main-container main{
	float: right;
	width: 75%;
	padding: 0 30px;
	padding-right: 25%;
	box-sizing: border-box;
}

.code {
    background-color: lightgray;
    padding: 10px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 15px;
}


#sidebar{
	float: left;
	width: 10%;
	height: auto;
	position: fixed;

	background-color: #aaaa;
	font-size: 20px;
	margin: 20px;
	padding: 15px;
	box-sizing: border-box;
}

#sidebar ul{
	margin: 0;
	padding: 0;
	list-style: none;
	line-height: 1.7em;
}

#sidebar a{
	text-decoration: none;
	color: #555555;
	display: block;
}

#sidebar a:hover{
	color: white;
}

#main-header{
	background-color: darkblue;
	color: white;
	width: 100%;
	display: block;

}

#main-header h1{
	text-decoration: none;
}

#header-container{
	background-color: darkblue;
	width: 70%;
	margin: none;
	overflow: hidden;
	/*float: left;*/
}


#navbar{
	color: white;
	display: block;
	float: right;
	background-color: darkblue;
}

#navbar ul{
	padding: 0;
	list-style: none;
}

#navbar li{
	display: inline;
}

#navbar a{
	text-decoration: none;
	color: white;
	font-size: 18px;
	padding-right: 15px;
}

#showcase{
	background: url('../dataset_images/jackal_allsims.png');
/*	background-position: center left;*/
	background-size: cover;
	min-height: 280px; /* if I decide to have text here */
	margin-bottom: 30px;
	text-align: center;
	width: 100%;
}

/* if I want to add text to the showcase */
#showcase h1{
	color: white;
	font-size: 50px;
	line-height: 1.6em;
	padding-top: 30px; 
}



#main-footer{
	background-color: #333;
	color: white;
	width: 100%;
	text-align: center;
	padding: 20px;
	margin-top: 40px;
}

