/* CSS Document */
html,
tml * {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	font-family: 'Amatic SC', cursive;
}

/*General*/
body {
	font-family: arial, sans-serif;
	font-size: 1vw;
	margin: 0px;
	padding: 0px;
	border: 0px;
}
a, a:visited {
	color: inherit;
}
img { 
	width: 100%;
	max-width: 100%;
	height: auto;
	vertical-align: middle;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

h2 {
	font-size: 2.5em;
	line-height: 1.8em;
	letter-spacing: 0.3em;
}

h1 {
	margin-bottom: 1.5%;
	margin-left: .7em;
}
h3 {
	font-size: 1.5em;
	font-weight: 100;
	line-height: 2.75;
	letter-spacing: .35em;
	text-transform: uppercase;
}

 /*HEADER*/
header {
	position: fixed;
	padding: 1.5em;
	z-index: 1000;
	top: 0px;
	left: 0;
	width: 97%;
	background-color: darkseagreen;/*transparent;*/
}
.site-logo {
	position: relative;
	display: block;
	float: left;
	width: 3.1em;
}
.site-logo img {
	width: 3.1em;
}
.logo {
	opacity: 1;
	border-radius: 50%;
}
nav {
	z-index: 400;
	top: 0;
	left: 0;
	opacity: .95;
	background: #fff;
	position: relative;
}
.site-nav {
	position: relative;
	float: right;
	z-index: 400;
	top: 0;
	left: 0;
	display: block !important;
	width: 80%;
	padding: .75em 1em 0 0;
	opacity: .95;
	background: none;
	
}
.site-nav ul {
	list-style-type: none;
	margin: 0;
	text-align: right;
}
.site-nav ul li {
	display: inline-block;
	margin-bottom: 0;
	margin-left: 1.5em;
}
.site-nav ul li a {
	font-family: 'Amatic SC', cursive;
	font-size: 1.5em;
	padding-bottom: .5em;
	text-decoration: none;
	letter-spacing: .15em;
	text-transform: uppercase;
	color: #fff;
	-webkit-transition: color .3s;
	transition: color .3s;
}
.site-nav ul li a:hover {
	outline: none;
	border-bottom: 1px solid white;
}

a {
	text-decoration: none;
}

 /*Hero*/
h1 {
	color: #ffffff;
	text-transform: none;
	font-size: 8.5em;
	letter-spacing: 0em;
	font-family: 'Amatic SC', cursive;
}
.hero {
	position: relative;
	height: 52vw;
	background-color: darkseagreen;
}
.hero-content {
	font-family: 'Amatic SC', cursive;
	color: #fff;
	position: absolute;
	z-index: 300;
	padding-top: none;
	top: 0;
	bottom: 0;
	width: 100%;
	text-align: center;
}
.hero h2 {
	font-family: 'Amatic SC', cursive;
	font-size: 3em;
	color: #ffffff;
	text-transform: uppercase;
	margin-top: 3em;
}
.hero h1 {
	font-family: 'Amatic SC', cursive;
	text-transform: uppercase;
	color: #ffffff;
}
.hero h3 {
	font-family: 'Amatic SC', cursive;
	font-size: 2em;
	text-transform: uppercase;
}

/*Intro*/
.intro {
  	padding: 12em 6em;
	position: relative;
	background-color: #2C2929 ;
}
.intro p {
	font-family: 'Amatic SC', cursive;
	color: darkseagreen;
	text-align: center;
	text-transform: uppercase;
	position: relative;
	font-size: 2.5em;
	line-height: 1.8em;
	letter-spacing: 0.3em;
}

/*Projects*/
.projects {
	height: 50em;
	display: flex;
	justify-content: center;
	align-items: center;
	vertical-align: top;
	background-color: white;
}

.projects h2 {
	color: darkseagreen;
	text-align: center;
	font-family: 'Amatic SC', cursive;
	font-weight: bold;
	text-transform: uppercase;
	position: relative;
	font-size: 2.5em;
	line-height: 1.8em;
	letter-spacing: 0.3em;
}
.projects p {
	color: black;
	text-align: left;
	font-family: 'Amatic SC', cursive;
	text-transform: none;
	position: relative;
	font-size: 2em;
	letter-spacing: 0.1em;
	margin: 7.5px;
}
.projects img {
	opacity: 0.8;
}
.projects img:hover {
	opacity: 1;
}

.projects-30MFF {
	width: 25%;
	margin: 7.5px;
}
.projects-comic {
	width: 25%;
	margin: 7.5px;
}
.projects-audio {
	width: 25%;
	margin: 7.5px;
}

.projects-video {
	width: 25%;
	margin: 7.5px;
}

/*About*/
.about {
  	padding: 12em 6em;
	position: relative;
	background: #2C2929; /*grey color*/
}
.about p {
	font-family: 'Amatic SC', cursive;
	color: darkseagreen;
	text-align: center;
	text-transform: uppercase;
	position: relative;
	font-size: 2.5em;
	line-height: 1.8em;
	letter-spacing: 0.3em;
}
.about img {
	width: 30vw;
	border-radius: 50%;
	display: block;
	margin: auto;	
}

/*Styling for Documentation page*/
.documentation {
	background-color: white;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	margin-top: 80px;
	margin-bottom: 18vh;
}
.documentation-page {
	background-color: white;
}
/*Documentation header & Navigation*/
.site-nav-documentation ul li a {
	font-family: 'Amatic SC', cursive;
	font-size: 1.5em;
	padding-bottom: .5em;
	text-decoration: none;
	letter-spacing: .15em;
	text-transform: uppercase;
	color: darkseagreen;
	-webkit-transition: color .3s;
	transition: color .3s;	
}
.site-nav-documentation {
	position: relative;
	float: right;
	z-index: 400;
	top: 0;
	left: 0;
	display: block !important;
	width: 80%;
	padding: .75em 1em 0 0;
	opacity: .95;
	background: none;
	
}
.site-nav-documentation ul {
	list-style-type: none;
	margin: 0;
	text-align: right;
}
.site-nav-documentation ul li {
	display: inline-block;
	margin-bottom: 0;
	margin-left: 1.5em;
}
.site-nav-documentation ul li a:hover {
	outline: none;
	border-bottom: 1px solid white;
}

#header-documentation {
	background-color: #ffffff;
}

/*Text*/
.documentation h1 {
	margin: none;
	font-family: 'Amatic SC', cursive;
	color: darkseagreen;
	text-align: left;
	text-transform: none;
	position: relative;
	font-size: 2.5em;
	line-height: 1.8em;
	letter-spacing: 0.3em;	
}
.documentation h2 {
	font-family: 'Amatic SC', cursive;
	color: darkseagreen;
	text-align: left;
	position: relative;
	font-size: 3em;
	text-transform: uppercase;
}
#documentation_title {
	text-align: center;
}

.documentation h3 {
	font-family: 'Amatic SC', cursive;
	color: black;
	text-align: left;
	text-transform: uppercase;
	position: relative;
	font-size: 2em;
	line-height: 1.8em;
	letter-spacing: 0.3em;
}
.documentation h4 {
	font-family: 'Quicksand', sans-serif;
	font-size: 1.2em;
	font-weight: bold;
}
.documentation p {
	/*font-family: 'Amatic SC', cursive;*/
	font-family: 'Quicksand', sans-serif;
	font-weight: lighter;
	color: black;
	text-align: left;
	text-transform: none;
	position: relative;
	font-size: 1.6em;
	line-height: 1.5em;
	letter-spacing: 0.1em;
}

/*Accordion idea from W3Schools*/
.accordion {
	background-color: darkseagreen;
	color: white;
	cursor: pointer;
	padding: 18px;
	width: 100%;
	border: none;
	text-align: center;
	outline: none;
	font-size: 2em;
	transition: 0.4s;
	font-family: 'Amatic SC', cursive;
	position: relative;
}

.active, .accordion:hover { 
	color: #2C2929;
}

.panel {
	padding: 0 18px;
	display: none;
	background-color: white;
	overflow: scroll;
	margin-left: 5%;
	margin-right: 5%;
}

/*End Styling for Documentation page*/

/*Footer*/
footer {
	margin-top: -3.5em;
	padding-top: 1em;
	background-color: darkseagreen;
	bottom: 0px;
}

footer p {
	font-family: 'Quicksand', sans-serif;
	color: #2C2929;
	font-size: 1em;
}
.footer-content {
	width: 70%;
	margin: 0 auto;
	padding-top: 5em;
	padding-bottom:1.7em;
	font-family: 'Quicksand', sans-serif;
}

.footer-legal {
	opacity: .8;
	background-color: transparent;
	align-content: center;
	text-align: center;
	font-size: 0.9em
	
}
.footer-disclaimer {
	text-align: center;
	
}
/*End Footer styling*/ 
/*End Footer styling*/ 
