body {
	background-color: lightblue;
	font-family: 'Source Sans Pro', sansserif;
	margin: 0;
	font-size: large;
}

h1 {
	font-size: 2em;
	text-align: center;
}

#pagecontent {
	font-family: 'Source Sans Pro', sansserif;
	margin-left: 20%;
	margin-right: 20%;
}

#hero {
    /* Sizing */
	
    width: 100%;
    height: 100vh;
	/* Flexbox stuff */
    display: flex;
    justify-content: center;
	align-items: center;
	/* Text styles */
    text-align: center;
	color: white;
	/* Background styles */
    background-image: linear-gradient(rgba(0, 0, 0, 0.7),rgba(0, 0, 0, 0.7)), url(resources/mdu.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

#hero h1 {
	font-size: 5em;
}

#hero h3 {
	font-size: 2em;
} 
*/


/* The navigation bar */
#topnav {
  overflow: hidden;
  background-color: #888;
  position: fixed; /* Set the navbar to fixed position */
  top: 0; /* Position the navbar at the top of the page */
  width: 100%; /* Full width */
}

/* Style the links inside the navigation bar */
#topnav a {
  float: left;
  color: black;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

/* Change the color of links on hover */
#topnav a:hover {
  background-color: #ddd;
  color: black;
}

/* Add a color to the active/current link */
#topnav a.active {
  background-color: #4CAF50;
  color: white;