/* this is a comment */

html {
	position: relative;
	min-height: 100%;
}

body {
	background-color: royalblue;

}
.content {
	padding: 2em 1em;
	margin-left: auto;
	margin-right: auto;
	max-width: 500px;
	padding-bottom: 100px; 

}

h1 {
	color: seashell;
	font-family: Impact, Charcoal, sans-serif;
	text-align: center;
}

#story {
	color: lawngreen;
	font-family: "Arial Black", Gadget, sans-serif;
	text-indent: 50px;
	
}
IMG.displayed {
	display: block;
	margin-left: auto;
	margin-right: auto;
	padding-top: 20px;
	width: 95%;
}

footer {
	width: 100%;
	position: fixed; 
	bottom: 0px; 
	background-color: yellow;
}

#footer {
	margin-left: auto;
	margin-right: auto;
	max-width: 500px;
	text-align: center;
	padding-top: 21px;
	padding-bottom: 21px;
}

#footer ul{
	margin: 0;
	padding: 0;
}

#footer li {
	display: inline-block;
}

#footer li span {
	margin: 0px auto;
	background-color: red;
	font-weight: bold;
	font-size: .9em;
	border-radius: 6px;
	border: solid 2px;
	padding: 10px 10px;

	-webkit-user-select:none;
	-moz-user-select:none;
	-ms-user-select:none;
	user-select:none;
}

#footer li a span:hover {
	background-color: green;
}

#left {
	margin-left: 5px;
	margin-right: 5px;
}

#center {
	text-align: center;
}

#right {
	margin-left: 5px;
	margin-right: 5px;
}

:link    {color:blue; background-color:transparent; text-decoration:none}
a:visited {color:blue; background-color:transparent; text-decoration:none}
a:hover   {color:red; background-color:transparent; text-decoration:underline}
a:active  {color:yellow; background-color:transparent; text-decoration:underline}

@media screen and (max-width: 600px) {

.content {
	font-size: .9em;
}
#footer {
	padding-top: 12px;
	padding-bottom: 12px;
}


#footer li span {
font-size: 0.9em;
padding: 6px 6px;
	border: solid 1px;


}