

#container {
	opacity: 95%;

	border-radius:  30px;
	/*Height:  500px; */
	/*Width can not exceed 100% if you add in margin+padding */

	width:  90%;
	float: left;
	/*This makes the div float up, to left, aka centered*/

	margin-left:  0;
	margin-top:  30px;
	/* Margins use up 20% */

	padding:  5%;
	/*Padding right and left are 10% */

	background-color:  darkred;
	font-size:  20pt;
	font-family:  Comic Sans MS;
}

body {
	margin: 10px;
	height: 100%;
	background-image: url(images/franklin.jpg);
}


div {
	border: 2px solid black;
	border-radius:  20px;
	color:  gold;
}

p {
	color: gold;
}

.header {
	border:  0px;
	font-size:  30px;
	font-style:  oblique;
}

.standard {
	border-radius: 0px;
	border: 0px;
}

.standard img{
	opacity: 100%;
	width: 2%;
}

/* Add a black background color to the top navigation */
.topnav {
  background-color: royalblue;
  opacity: 80%;
  overflow: hidden;
}

/* Style the links inside the navigation bar */
.topnav a {
  float: left;
  color: #f2f2f2;
  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: #04AA6D;
  color: white;
}

.floatRight{
	float: left;
}