/*
 Aaron Pethybridge
 Online Portfolio
 September, 2019
 */

/* Main page structure elements */
html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	padding:0;
	min-width:600px;
	/*background-color: #ffffff;*/
	background-color: #fbfcf2;
}

h1 {
	font-family: "Arial", Sans;
	font-size: 18pt;
	margin: 0px;
	color:#000000;
}

#container {
	width: 100%;
	margin: 0 auto;
	font-family: "Arial", Sans;
	text-align: left;
}

#sidebar {
	height: 100%; /* Full-height: remove this if you want "auto" height */
	width: 20%; /* Set the width of the sidebar */
	position: fixed; /* Fixed Sidebar (stay in place on scroll) */
	z-index: 1; /* Stay on top */
	top: 0; /* Stay at the top */
	left: 0;
	background-color: #111; /* Black */
	overflow-x: hidden; /* Disable horizontal scroll */
	padding-top: 20px;
}

#main {
	padding-top: 2%;
	margin-left: 20%;
	padding-left: 20px;
}


