/*
 Theme Name:   SPD
 Description:  
 Author:       Nicolas Christopher Kaemmerer
 Version:      1.0.0
*/



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;
	color: black;
	font-family: Open Sans;
	font-size: 1rem;
}
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;
}


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

body {
  background: #43C6E4;
}


#page {
    height: 100vh;
    display: flex;
    align-items: flex-start;
	align-content : flex-start;
	flex-flow: row wrap;
}

#header {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

#main {
  width: 100%;
}

#footer {
  width: 100%;
}


/* HEADER */
#header_wrapper {
	margin-left:0%;
	width:100%;
}

#title {
	margin-left:7.5%;
	width:85%;
	background: #00f662;
    display: flex;
	align-items: center;
}

.logo > img{
	display:none;	
}
.logo::before {
	content: url();
}

#words {
	font-size: 30px;
	margin-left:2%;
	font-weight: bold;
}

#menu {
	width:100%;
	height:40px;
	padding-left: 8px;
	padding-right: 8px;
	text-transform:uppercase;
}

#menu ul {
	padding:0px;
}

#menu li {
	display:inline-block;
	padding: 0 8px;
}

#menu a {
	color: #ccc;
	text-decoration: none;
}

#menu a:hover {
	color: #fff;
}

/* MAIN */
#main_wrapper {
	margin-top:10px;
	margin-left:5%;
	height:100%;
	width:90%;
	background: white;
}

/* FOOTER */
#footer_wrapper {
	margin-top:10px;
	margin-left:5%;
	width:90%;
	background: red;
	padding-left: 8px;
	padding-right: 8px;
}

/* MENU */
#mobile_header_wrapper {
	display: none;
}

@media only screen and (max-width: 768px) {
	#header_wrapper {
		display: none;
	}
	
	#mobile_header_wrapper {
		display:block;
		width:100%;
		background: red;
	}
}


/* OTHER */
#intro {
  width:400px;
  margin:0 auto;
  background: #fff;
  border-radius:22px;
  padding:33px;
  text-align: center;
  box-shadow:1px 1px 1px 0px rgba(0,0,0,0.1)
}

#intro h1 {
  font-size:44px;
  font-weight:700;
}

#intro h2 {
  color: #aaa;
  font-style: italic;
}

#intro .button {
  background: #D23F35;
  border-radius: 4px;
  color:#fff;
  display: inline-block;
  padding:11px 22px;
  text-decoration: none;
  margin-top:22px;
}
