/*CSS Reset */

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*End of CSS reset */


/*Positioning and elements*/

.container {
  width: 100%;
  height: 100%;
  text-align: center;
  background-color: #FFF5EE;
}

p input {
  width: 150px;
  height: 40px;
  font-size: 18px;
  font-family: Lucida Grande;
  background-color: #025488;
  color: white;
  padding: 5px;
  border-radius: 10px;
  border-bottom: 3px solid gray;
  border-right: 2px solid gray;
}

#pull-left {
  float: left;
}

#pull-right {
  float: right;
}


h2 {
  font-size: 30px;
  font-family: Lucida Grande;
  color: #025488;
  padding: 10px;
}

.opening img {
  height: 200px;
  width: 200px;
  border-radius: 50%;
  padding: 10px;
}

#pull-left img {
  height: 40px;
  width: 40px;
  border-radius: 50%;
}

#pull-left {
  margin-left: 50px;
}

#pull-left li {
  display: inline;
}

#pull-right li {
  font-size: 13px;
  font-family: Lucida Grande;
  position: relative;
  top: -30px;
	vertical-align: center;
}

#pull-right a {
  color: #025488;
}

#pull-right img {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  position: relative;
  top: 25px;
	margin-left: -5px;
}

#pull-right {
  margin-right: 50px;
}

.footer {
   position:fixed;
   left:0px;
   bottom:0px;
   height:30px;
   width:100%;
   background-color: #FAF0E6;
   border: 1px solid lightgrey;
	 padding-bottom: 30px;
	padding-top: 10px;
 }


/*End of positiong and elements */

/*Main section*/

.game {
  width: 500px;
  height: 500px;
  margin: 10px auto;
  background-color: #025488;
  color: white;
  font-size: 20px;
  font-family: Lucida Grande;
	padding-bottom: 50px;
}

.game h1 {
	font-size: 30px;
	font-family: Lucida Grande;
	padding: 5px 5px 20px 5px;
}

.status p {
	display: inline-block;
}

#question, #score, #restart {
	display: inline-block;
	margin-right: 45px;
	margin-top: 10px;
}

#next {
	background-color: white;
	color: #025488;
	font-size: 28px;
	margin: 10px 0;
}

#restart {
	display: inline-block;
	width: 60px;
	height: 30px;
	position: relative;
	border-radius: 10px;
	font-size: 18px;
	font-family: Lucida Grande;
	cursor: pointer;
	background-color: white;
	color: #025488;
	padding: 7px 10px 0 10px;
}

#answers li {
	list-style-type: none;
	padding: 20px;
	text-decoration: none;
	display: inline-block;
}

#heading {
	padding: 10px;
	font-size: 24px;
}

#correct-answer p {
	line-height: 1.5 em;
}

/*End of main section*/






