/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */


.section {
    background-color: #333300;   /*#1a1a1a;*/
    color:#ccff66; /*text color */
    margin:1em 4em 1em 4em;  /* Control padding for content here, defaults to top, bottom, and sides. */
	float:none;
	border-radius: 2em;
    padding:1em;
}

.quote {
		margin: 1em; 
		padding: 1.5em;
		border-radius: 1em 4em; 
		background-color:#996633;
		text-align: center;
		color:#003300;
}

.link {
	display: inline-flex;
	padding: 0.5em;
	border-radius: 1em; 
	background-color: #996633;
	font-weight: bold;
	font-size: 1.25em;
	margin-bottom: 0;
}
.link:hover {
    color: #ffffff;
    background-color: #663300;
    text-decoration: none;
}

#title {
	margin-left: 1em;
}

#date {
	text-align:right; 
	margin-top: -2em;
	margin-right: 2em;
}

body {
	background-color:#99cc00;
	font-size: 1.3rem;
}

p {
	text-indent: 0;  /* Fiddle here to change universal indentation  */
	margin: 2em;
}

h3 {
	margin-left: 2em;
}

html, body, #container {
	height: 100%;
	margin: 0;
	padding: 0;
}
body > #container { height: auto; min-height: 100%}

img {
	width: 100%;
	height: auto;
}

#container {
padding-bottom: 3em;
background-color:#666633;
}

#header {
    background-color:white; /*top of header color */
    color:#cc0000;
    text-align:center;
    padding:5px;
}
#nav {
    line-height:30px;
    background-color:#333300;
	color:#cc0000;
    height:80px;
    padding:5px;	
	text-align:center;
	font-size: 130%;
}	
#footer {
    background-color:#333300;
    color:#ccff66;
	text-align:center;
    clear:both;
	/* added in below here */
	position: relative;
	z-index: 10;
	height: 3em;
	margin-top: -3em;
   /*padding:5px;	not used? */	 
}
/* Link colors */
a:link {
    color: #ccff66;
    background-color: transparent;
    text-decoration: none;
}
a:visited {
    color: #ccff66;
    background-color: transparent;
    text-decoration: none;
}
a:hover {
    color: #ffffff;
    background-color: transparent;
    text-decoration: none;
}
a:active {
    color: #e6e6e6;
    background-color: transparent;
    text-decoration: none;
}
