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;
}

body {
  font-family: "Josefin Sans";
  font-size: 32px;
  line-height: 48px;
  color: #fff;
  height: 100%;
  background: #333;
  background: -webkit-radial-gradient(center, ellipse cover, #222 0%, #222 80%, #1a1a1a 100%);
  background: -khtml-radial-gradient(center, ellipse cover, #222 0%, #222 80%, #1a1a1a 100%);
  background: -moz-radial-gradient(center, ellipse cover, #222 0%, #222 80%, #1a1a1a 100%);
  background: -ms-radial-gradient(center, ellipse cover, #222 0%, #222 80%, #1a1a1a 100%);
  background: -o-radial-gradient(center, ellipse cover, #222 0%, #222 80%, #1a1a1a 100%);
  background: radial-gradient(center, ellipse cover, #222 0%, #222 80%, #1a1a1a 100%);
  background-attachment: fixed;
}

h1, h2, h3 {
  font-family: "Actor";
  font-weight: normal;
}
h1 { font-size: 3em; line-height: 1em; margin-bottom:.5em;}
h2 { font-size: 2.5em; line-height: 1em; margin-bottom:.3em;}
h3 { font-size: 1.8em; line-height: 1.5em; margin-bottom:.2em;}

aside {
  font-size: 48px;
}

p {
	font-size: 1em;
	line-height: 1em;
}

li {
	margin-left: 2em;
	text-align: left;
	line-height: 1em;
}

a {
  display: inline-block;
  padding: 6px;
  -webkit-border-radius: 12px;
  -khtml-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  border-radius: 12px;
  color: #acd;
  background: rgba(0,0,0,0.15);
  font-weight: bold;
  text-decoration: none;
  -webkit-transition: all 1s ease;
  -khtml-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
a:hover {
  background: rgba(0,0,0,0.25);
}

.mosho-slide {
  width: 1024px;
  padding: 20px;
  -webkit-border-radius: 16px;
  -khtml-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
  border-radius: 16px;
  text-align: center;
  -webkit-text-shadow: 0 0 16px #fff; /* shadows to simulate blur, why not? */
  -khtml-text-shadow: 0 0 16px #fff;
  -moz-text-shadow: 0 0 16px #fff;
  -ms-text-shadow: 0 0 16px #fff;
  -o-text-shadow: 0 0 16px #fff;
  text-shadow: 0 0 16px #fff;
  color: rgba(255,255,255,0);
  opacity: 0.2;
  -webkit-transition: all 0.5s ease; /* ease into state changes */
  -khtml-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.mosho-slide.mosho-active {
  -webkit-text-shadow: none;
  -khtml-text-shadow: none;
  -moz-text-shadow: none;
  -ms-text-shadow: none;
  -o-text-shadow: none;
  text-shadow: none;
  color: rgba(255,255,255,1);
  opacity: 1.0;
}

.code {
  margin: 0 auto;
  padding: 16px;
	width:800px;
	min-height: 300px;
  -webkit-border-radius: 16px;
  -khtml-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
  border-radius: 16px;
	border: none;
  text-align: left;
  font-family: "Ubuntu Mono", monospace;
  font-size: .7em;
	line-height: 1.1em;
	color: #fff;
  background: rgba(0,0,0,0.0);
	overflow: hidden;
	resize: none;
	
}

.mosho-active .code {
  background: rgba(0,0,0,0.3);
}