/*
 * Global
 */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}

body, html {
	font-family: "Open Sans", sans-serif;
 	height: 100%;
 }

h1,h2,h3,h4,h5,h6 {
  line-height: 2em;
  word-break: break-word;
  padding: 1em 0em;
	font-family: "Bebas neue";
	font-size: 2em;
	letter-spacing: 3px;
	color: #393939;
}

p {
  padding-bottom: 1em;
  font-weight: 100;
	color: #575757;
	font-size: 18px;
	letter-spacing: 2px;
}

img, iframe {
	max-width: 100%;
}

/*
 * Components
 */
h1.maintitle {
  padding: 0;
}
p.subtitle {
  color: white;
	font-size: 1.5rem;
	font-weight: 300;
	text-shadow: 0 1px 3px rgba(0,0,0,0.6);
}

/*
 * Sections
 */
section.fixed {
	background-attachment: fixed;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	min-height: 100%;
	position: relative;
	z-index: 1;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	text-align: center;
}
section.fixed h1,section.fixed h2 {
	color: white;
	font-size: 2.875rem;
	font-weight: 300;
	text-shadow: 0 1px 3px rgba(0,0,0,0.6);
}

section.scrolling {
	box-shadow: 0 0 50px rgba(0,0,0,0.5);
	line-height: 1.6;
	padding: 4em 0;
	position: relative;
	z-index: 2;
}
section .container {
	margin: 0 auto;
	max-width: 768px;
	width: 90%;
}
section .container::after {
	clear: both;
	content: '';
	display: table;
}

section.footer {
	text-align: center;
	padding: 40px 10px 10px 10px;
}

section.footer p, section.footer p a {
	font-size: 10px;
	color: rgb(142, 142, 142);
	font-family: 'Courier New', Courier, monospace;
}

/*
 * Responsiveness
 */
@media (max-width: 768px)
{
    #scrollbar {
      display: none;
    }
    * {
      line-height: inherit !important;
    }
}
