html {
	height: 100%;
}

body {
	width: 100%;
    height: 100%;
	margin: 0;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
	color: white;
	background: black;
	
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
	
	font-family: "Comic Sans MS", "Comic Sans", 'Chalkboard SE', 'Comic Neue', sans-serif;
	font-size: 1.1rem;
	line-height: 0.5rem;
}

.hidden {display: none;}

a {
	text-decoration: none;
	display:inline-block;
	color: white;
	
	transition: all 50ms;
	-webkit-transition: transform 50ms;
	-moz-transition: transform 50ms;
	-ms-transition: transform 50ms;
	-o-transition: transform 50ms;
 	transition-timing: ease;
}

a:hover {
	text-decoration: none;
	color:#ffff33;
}

blockquote {
    padding:0;
    margin-top:0;
    margin-bottom:0;
}

h1, h2, h3, h4, ul, ol, p {
    margin-top:0;
    margin-bottom:0;
}

#social:hover {
	cursor: pointer;
}

#pagecontent {
	display:block;
	position: relative;
	width:96vw;
	max-width:1800px;
	margin: auto;
	padding: 0 2vw 0 2vw;
	height: 100vh;
	overflow-x: hidden;
	align-content: center;
}

#centerplace {
	position: relative;
	margin:auto;
	top:50%;
	transform:translateY(-50%);
}

#twoer {
	display: grid;
	grid-template-columns: 48.3vw 18vw;
	width: 100vw;
}

#twoer-1 {
	height:100%;
	
	display: grid;
	align-items: center;
	justify-content: center;
	
	padding:0;

	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

#twoer-2 {
	height:100%;
	
	display: grid;
	align-items: center;
	justify-content: center;
	
	padding:0;

	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

.middle {
   margin-left: auto; margin-right: auto;
}

#mobile-pad {
	height:10vh;
}

#mobile-twoer-1 {
	height:65vh;
	
	padding:0 0 2vh 0;
	margin: 0 auto;
	
	justify-content: center;
	align-content: center;
	align-items: center;
	text-align:center;

	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

#mobile-twoer-2 {
	display: block;
	height:15vh;
	
	margin: 0 auto;
	
	justify-content: center;
	align-content: center;
	align-items: center;
	text-align:center;

	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

/* Desktop ----------------------------------------------------------------------- */

@media only screen and (min-width: 768px) {
	#content {
		position: fixed;
		width:100%; height:100%;
		top:0;left:0;right:0;bottom:0;
		z-index:0;
	}

	#content-mobile {
		display: none;
	}

}

/* Mobile ----------------------------------------------------------------------- */

@media only screen and (max-width: 768px) {
	
	#content {
		display: none;
	}

	#content-mobile {
		position: fixed;
		width:100%; height:100%;
		top:0;left:0;right:0;bottom:0;
		z-index:0;
	}
	
	body {
		font-size: 1rem;
		line-height: 0.4rem;
	}
}
