/* import Open Sans, Quicksand and Material Icons from Google */
@import url('https://fonts.googleapis.com/css2?family=Material+Icons&family=Open+Sans&family=Quicksand&display=swap');

body {
	font-family: 'Open Sans', sans-serif;
	font-family: 'Quicksand', sans-serif;
		
	background-image: url("../images/backgroundimg.jpg");
	background-repeat: no-repeat;
	background-attachment: fixed;


}

/* Centre horizontally */
.centre {
	text-align: center;
}

.menu {
	padding: 10px;
	border: 5px solid #BDC2BF; /* shorthand CSS notation */
	margin: 0;
}

* {
    box-sizing: border-box;
}


#pageContents {
	width: 80%;
	margin: 0 auto;
	display: block;
}


nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: rgba(189, 194, 191, 0.1); /* #BDC2BF */
    text-align: center;
}

nav li {
	display: inline-block;
	width: 16.6%; /* 6 items */
	margin-right: -4px;
}

nav a {
	display: block;
	text-decoration: none;
}

nav a:hover {
	color: #25291C;
}

nav a.active {
	cursor: default;
}


/*
	Create and style apply rules for the <header> <nav> and <footer> sections of your website.
*/

footer {
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	background-color: rgba(227, 231, 211, 0.5); /* #E3E7D3 */
	color: #25291C;
	text-align: center;
}

/* incase footer blocks some contents */
footer:hover {
	display:none;
}

header {
	text-align: left;
	text-shadow: 2px 2px 5px;
}

nav {
	font-family: 'Open Sans', sans-serif;
	font-size: 15px;
}
