/*Joseph Morgan - S316703 Assignment 2*/

/*side nav buttons*/
a.button{
display:inline-block;
padding:0.35em 1.2em;
border:0.1em solid #FFFFFF;
margin:0 0.3em 0.3em 0;
border-radius:0.12em;
box-sizing: border-box;
text-decoration:none;
font-family:'Roboto',sans-serif;
font-weight:300;
color:#FFFFFF;
text-align:center;
transition: all 0.2s;
}
a.button:hover{
color:#000000;
background-color:#FFFFFF;
}
a.button{
display:block;
margin:0.4em auto;
}

a:link {
	color: black;
}

a:visited {
	color: black;
}

body {
  background-image: url("background.png"); 
}

img {
	margin-right: 200px;
	margin-top: 20px;
}

p#bold {
  font-weight: bold;
}

/*for the video*/
iframe {
	margin-left:200px
}

.pic {
	float:right
}

/*Website logo*/
header {
	margin-top: 50px;
	margin-right: 180px;
	margin-left: 180px;
	width: 100%
}

/*Top navigation pane*/
.topnav {
	margin-left: 180px;
	margin-right: 160px;
	background: #3b7080;
	color: white;
	padding:1em;
	text-align: center;
		border-radius: 10px;

	font-family:sans-serif;
}

/*Side navigation bar*/
nav ul {
	margin-top: 30px;
	margin-left: 180px;
	margin-right:35px;
	background: #3b7080;
	color: white;
	padding:1em;
	float:left;
	border-radius: 10px;
	list-style-type: none;
	font-size: 20px;
	font-family:sans-serif;
}

/*Title of the current page*/
h1 {
	margin-top: 40px;
	margin-right: 180px;
	margin-left: 180px;
	text-align: center;
	font-family:sans-serif;
	font-weight: bold;
}

h2 {
	margin-left: 200px;
	font-family: sans-serif;
	color:blue;
}

/*Main text body*/
p {
	margin-right: 200px;
	margin-left: 200px;
	font-family:sans-serif;
	line-height: 30px;
}

/*Reference page italics..*/
span.italics {
  font-style: italic;
}


/*highlights the specific anchor when link is clicked*/
:target {
   background-color: #ffa;
}