html, body{
	margin: 0;
	padding: 0;	
}

/* CSS for Header, Logo and Navigation */
header{
	width: 100vw;
	background-color: #fff;
	display: inline-flex;
}

#logoContainer{
	display: flex;
	margin: auto 10px auto 10px;
	width: 25%;
	padding: 5px 0px;
	position: relative;
	left: 2%;
	clear: both;	
}

#logoContainer img{
	display: block;	
}

#logoContainer a{
	display: block;
	margin: auto 5px auto 0px; /* This centers the company name vertically */
	padding: 20px 0px;
	text-align: center;
	text-decoration: none;
	color: #4f587d;
	font-family: "poppins", sans-serif;
	font-weight: 600;
	font-size: 20px;
	letter-spacing: 4px;
			
}

nav{
	display: grid;
	width: 70%;			
}

nav ul{
	margin: 0px;
	padding: 5px 0px;
	width: 60%;
	display: flex;
	position: relative; /* Position of the <ul> relative to <nav> container */
	left: 40%;			/* This makes sure that the whole <ul> starts from the middle of the screen */
	clear: both;
}

nav ul li, .Categories li{	
	margin: auto;	
	list-style: none;
}

nav ul li a, .Categories a{
	display: block;
	text-decoration: none;
	text-align: center;
	font-family: "poppins", sans-serif;
	font-weight: 400;
	font-style: regular;
	font-size: 16px;
	color: #02052e;
} 
/* ---------------------- End of Navigation CSS styles ------------------------------------ */

/* Main Body CSS styles */

#homeBanner{
	display: block;
	width: 100%;
	align-content: center;
	clear: both;
}

#homeBanner img{
	background-color: #fff;
	width: 80%;
	height: 70vh;
	position: relative;
	left: 10%;
}
#mainContainer{
	display: block;
	width: 100%;
	clear: both;
}

#mainContainer ul{
	margin: 0px;
	padding: 5px 0px;
	display: flex;
	flex-direction: row;
	width: 100%;
	height: 20vh;
	align-content: center;
	background-color: #acadad;
	clear: both; /* Makes sure there's no overlapping of content */
}

#mainContainer ul li{
	list-style: none;
}

#LoginForm{
	display: block;
	width: 15%;
	margin: 10px 10px;
	position: relative;
	left: 70%;
}

#LoginForm fieldset{
margin: 5px 0px;
border: none;
width: inherit;
clear: both;
}

footer{
	color: #fff;
	background-color: #000;
}

footer div {
	display: block;
}

footer div ul li{
	list-style: none;
}