* {
	margin: 0;
	padding: 0;
	list-style: none;
	text-decoration: none;
}

body {
	background: #222;
	font-family: 'Calibri', sans-serif; /*this order means if you can't find Calibri, go to a sans-serif default*/
	font-weight: 500;
	/*do you want to put a default font size?*/
}

/*=========== NAVIGATION BAR SECTION ===========*/

.container {
	width: 80%;
	margin: 0 auto;
}

header {
	background: #55d6aa;
}

/*OK so someone told me this is how you remedy the bug where
floating the logo and the nav to the left and right makes
the background color of the header disapear:*/

header::after {
	content: '';
	display: table;
	clear: both;
}

.logo {
	float: left;
	padding: 10px 0;
}

nav {
	float: right;
}

nav li {
	display: inline-block;
	margin-left: 70px;
	padding-top: 30px; 

	position: relative; /*this goes with the line animation*/
}

nav li a {
	color: white;
	font-size: 16pt;
	text-transform: uppercase;
}

nav li a:hover {
	color: black;
}

nav li a::before {
	content: '';
	display: block;
	height: 5px;
	background-color: white;

	position: absolute;
	top: 0;
	width: 0%

	transition: all ease-in-out 250s; /*this didn't work for me*/
}

nav li a:hover::before {
	width: 100%;
}


/*=========== MAIN TEXT SECTION ===========*/


.main {
	background-color: white;
	margin-left: 10px;
	margin-right: 320px; /*this number comes from all the pixels added up from my sideright secction*/
	margin-top: 10px;
	margin-bottom: 10px;
	padding: 20px;
	border-radius: 10px;
}

.sideright {
	background-color: white;
	margin-left: 10px;
	margin-top: 10px;
	margin-right: 10px;
	margin-bottom: 10px;
	padding: 20px;
	border-radius: 10px;

	float: right;
	width: 260px;
}

/*=========== FOOTER SECTION ===========*/

footer {
	background: #55d6aa;
	clear: both;
	padding: 20px;
	height: 200px;
}
/*. stands for class*/


/*=========== HEADINGS SECTION ===========*/

h1 {
	font-size: 150%;
	color: #C5B358;
}



/*=========== LIST OF COLORS USED ===========*/