/* === 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;
}
/* 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 === */

body {
background-color:#FFF;
	color: black;
	font-size: 20px;
	font-family: 'TradeGothicLTStdBoldExtended';
	overflow: hidden;
}


a, a:visited {
	color: #F3542F;
	text-decoration: none;
	transition: color 0.2s;
}

a:hover {
	color: #000;
}

a:active {
	color: lightblue;
}

.big {
	display: block;
	font-size: 45px;
	line-height: 1.1em;
	margin-bottom: 10px;
	background-color:#FFF;
	padding:20px;
}

.wrapper div {
	position: absolute;
}

.settings, nav {
	position: fixed;
	z-index: 9999999;
	bottom: 0;
	background: rgba(10,10,10, 0.1);
    font-family: 'TradeGothicLTStdBoldExtended',Arial, sans-serif;
	font-weight: normal;
	font-size: 20px;
}

.settings {
	right: 0;
	padding: 10px 20px;
	border-radius: 10px 0 0 0;
}

.settings a {
	border: none;
}

nav {
	left: 0;
	border-radius: 0 0px 0 0;
}

nav li {
	float: left;
}


nav a {
	padding:10px;
	display: block;
	border: none;
	text-align: center;
	transition: 0.25s;
}

nav li:last-child a {
}

nav a:hover {
	background: rgba(283,84,87, 1);
}

.sp-canvas {
	display: block;
}

.arrow {
	position: relative;
	display: inline-block;
}

.demo { 
	top:-15%;
	width: 800px;
	text-align: center;
	background-color:#FFF;
	z-index:2;
}

.demo .arrow {
	font-size: 20px;
	animation: point-down 0.5s alternate infinite;
}

.description {
	top: 500px;
	left: -100px;
	width: 1000px;
	z-index:2;

}

.syntax {
	top: 1200px;
	left: 0px;
	width: 1100px;
	z-index:2;
}

.scrollbar {
	top: 1200px;
	left: 1200px;
	width: 1000px;
	z-index:2;
}

.rotations {
	left: 1800px;
	top: 660px;
	width: 800px;
	transform: rotate(-90deg) translateY(2.5em);
	height:380px;
	z-index:2;
}

.rotations .upside-down {
	font-size: 42px;
	text-align: right;
	transform: rotate(180deg) translateY(3em);
	bottom:600;
	position:absolute;
	z-index:2;
	padding-bottom:100px;

}

.source {
	left: 1800px;
	top: -1400px;
	width: 1000px;
	transform: rotate(90deg) translateX(50px);
	z-index:2;
}

.follow {
	width: 650px;
	left: 1200px;
	top: -1500px;
	transform: rotate(90deg) translateX(50px);
	z-index:2;
}

.follow .big {
	font-size: 40px;
	z-index:2;
}

.highlight {
	animation: highlight 0.2s alternate 6 ;
}

@keyframes point-down {
	from {
		top: 0;
	}
	to {
		top: 5px;
	}
}

@keyframes highlight {
	to {
		background: lightblue;
	}
}
