body{
	background-color: whitesmoke;
	color: lightgray;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: 1.6em;
	margin: 0;
}

a{
	text-decoration: none;
	color: blue;
}

a:hover{
	color:red;
}


a:active{
	color:green;
}

a:visited{
	color: 	;

}

h2{
	color: black;
}

.container{
	width: 80%;
	margin: auto;
	overflow: hidden;
}



#main-header {
	background-color:white;
	color:#fff;
	text-align: center;
}


#navbar{
	background-color: darkblue;
	color: white;}

#navbar ul{
	padding: 0;
	list-style: none;

}

#navbar	li{
	display: inline-block;
	;

}

#navbar a{
	color: white;
	text-decoration: none;
	font-size: 18px;
	padding-right: 15px;

}

#showcase{
	background-image: url('../images/BG.jpg');
	background-position:center right ;
	min-height: 300px;
	margin-bottom:30px ;
	text-align: center ;
	vertical-align: center;



}

#showcase h1{
	color: darkblue;
	font-size: 50px;
	line-height: 1.6em;
	padding-top: 30px;
	text-decoration: underline;
	
}

#main{
	float: left;
	width: 70%;
	padding: 0 30px;
	box-sizing: border-box;
	text-decoration: underline;
}

#sidebar{
	float: right;
	width: 30%;
	background-color: darkblue;
	padding: 10px;
	box-sizing: border-box;
}

#main-footer{
	background:  darkblue;
	color: white;
	text-align: center;
	padding: 20px;
	margin-top: 40px;
}

@media(max-width: 600px){
#main{
	width:100%;
	float:none;
}


#sidebar{
	width:100%;
	float:none;
}
