@charset "utf-8";

/* ------ Browser reset to zero out margins and padding ------- */
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, font, 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 {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	font-weight: normal;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
display: block;
margin: 0;
padding: 0;
}

html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}

html, body {
	height: 100%;	
}

body {
	
	background-color: rgba(198,227,255,1.00);
	background-image: url(images/bubbles.png);
	background-size: cover;
	background-attachment: fixed;
}

#container {
	/* [disabled]width: 375px; */
	/* [disabled]height: 667px; */
	margin: 0 auto;
	padding: 20px;
	height: 100%;
	font-family: Raleway, "Century Gothic", sans-serif;
	min-width: 310px;
	width: 66%;
	position: relative;
}

header h1 {
	text-align: center;
	color: white;
	font-size: 3em;
	font-family: aguafina-script;
	text-shadow: 2px 2px 6px rgba(0,0,0,1.00);
	font-style: normal;
	font-weight: 400;
}

header p {
	position: absolute;
	right: 10px;
	top: 10px;
	
	text-align: right;
	font-size: 14px;	
	color: rgba(24,37,50,1.00);
	text-shadow: 1px 1px 4px rgba(255,255,255,1.00);
}

article h2 {
	margin: 10px 0px 20px 0px;
	text-align: center;
	color: rgba(24,37,50,1.00);
	font-size: 20px;
	font-weight: bold;
	text-shadow: 1px 1px 6px rgba(255,255,255,1.00);
	line-height: 1.4em;
}

ul {
	list-style-type: none;	
	
}

li {
	width: 100%;
	display: block;
	background: rgba(255, 255, 255, .75);
	height: 45px;
	margin: 5px 0px;
	border-radius: 5px;
	color: rgba(24,37,50,1.00);
	line-height: 45px;
	padding: 0px 20px;
	-webkit-box-shadow: inset 0px 0px 4px 0px rgba(39,39,39,1.00);
	box-shadow: inset 0px 0px 4px 0px rgba(39,39,39,1.00);
	
		background-position: bottom right;
		-webkit-transition: all 0.5s ease-out 0s;
	-moz-transition: all 0.5s ease-out 0s;
	transition: all 0.2s ease-out 0s;
}

li:hover {
	cursor: pointer;
	background-color: rgba(46,186,255,0.75);
}

li.selected {
	background-color: rgba(46,186,255,0.75);	
}

li.right {
	background-color: rgba(158,255,45,0.75);
	background-image: url(images/right.png);
	background-position: center right;
	background-repeat: no-repeat;
}

li.wrong {
	background-color: rgba(255,58,45,0.75);
	background-image: url(images/wrong.png);
	background-position: center right;
	background-repeat: no-repeat;
}

#submit {
	opacity: 0;
	display: block;
	margin-top: 5px;
	width: 100%;
	background: rgba(255,253,0,0.75);
	height: 45px;
	border-radius: 5px;
	font-weight: bold;
	
	-webkit-transition: all 0.5s ease-out 0s;
	-moz-transition: all 0.5s ease-out 0s;
	transition: all 0.5s ease-out 0s;
}