/* CSS Coded By: Adam Southard
                 GIT 417
				 ASU Online
				 Spring 2016 Session A */
				 
/* Start of CSS Document */

/* CSS Reset: http://meyerweb.com/eric/tools/css/reset/ */
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;
}

/* CSS for Webpage */

/* CSS for Main Sections */

body {
	background-image: url("Background.jpg");
	background-repeat: no-repeat;
	background-size: 100% 100%;
	width: 99%;
	height: auto;
}

header {
	margin: auto;

	margin-top: 2%;
	padding: 0;
	width: 80%;
	height: auto;
}

section {
	margin: auto;
	margin-bottom: 2%;
	padding: 0;
	width: 80%;
	height: auto;
	text-align: center;
	background-color: rgba(255, 255, 255, 0.5);
	border-radius: 0px 0px 40px 40px;
	font-family: "Comic Sans MS", cursive, sans-serif;
	font-size: 100%;
}

/* CSS for Div, H1, H3, P, and Button */

div {
	margin: auto;
	padding: 0;
}

h1 {
	text-align: center;
	padding-top: 5%;
	font-size: 300%;
	margin-left: 10%;
	margin-right: 10%;
}

h3 {
	text-align: center;
	margin-left: 5%;
	margin-right: 5%;
	margin-top: 3%;
	margin-bottom: 2%;
	font-size: 130%;
	line-height: 150%;
}

p {
	margin-bottom: 3%;
	font-size: 130%;
	font-style: italic;
}

button {
	margin: auto;
	margin-right: 3%;
	padding: 0;
	font-family: "Comic Sans MS", cursive, sans-serif;
	font-size: 100%;
	border-radius: 10px;
	padding: .5%;
	background-color: white;
	border: 1px black solid;
}

/* CSS for ID's */

#header {
	margin: auto;
	padding: 0;
	width: 100%;
	height: auto;
	opacity: 0.9;
	border-radius: 40px 40px 0px 0px ;
}

#mainDisplay {
	margin: auto;
	padding: 0;
	padding-bottom: 3%;
}

#gameDisplay {
	
}

#startImage {
	margin-left: 10%;
	margin-right: 10%;
	width: 30%;
	height: auto;
}

#showHint {
	margin-bottom: 1%;
	font-size: 1.5em;
}

#unknownWord {
	margin: auto;
	padding: 0;
	height: 40px;
	text-align: center;
}

#guessedLetters {
	margin-top: 1%;
}

#unguessedLetters {
	margin-top: 1%;
}

#yourResults {
	margin-top: 1%;
	margin-bottom: 1%;
}

#used {
	min-height: 40px;
}

#startScreen {
	margin: auto;
	margin-top: 5%;
	padding: 0;
	width: 80%;
	height: auto;
}

#displayArea {
	margin: auto;
	margin-top: 3%;
	margin-bottom: 2%;
	padding: 0;
	width: 80%;
	height: auto;
}

/* CSS for Classes */

.box{
	display: inline-block;
	text-align: center;
	font-size: 1em;
	width: 10px;
	padding: 2px;
	margin: 3px;
	height: 15px;
	color: black;
	text-align: center;
	color: black;
}

.letter{
	border-bottom: solid black 2px;
	text-align: center;
}

.letterButtons{
	display: inline-block;
	text-align: center;
	font-size: 1em;
	width: 1.5em;
	height: 1.5em;
	padding: 2px;
	margin: 3px;
	color: white;
	background-color: gray;
	cursor: pointer;
	cursor: hand;
	border-radius: 5px;
	border: white 2px solid;
	text-align: center;
}

.letterButtons:hover{
	background-color: black;
}

.lblUsed{
	display: inline-block;
	text-align: center;
	font-size: 1em;
	width: 1.5em;
	height: 1.5em;
	padding: 2px;
	margin: 3px;
	color: white;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	border: white 2px solid;
}

/* End of CSS Document */