html {
	font-family: 'Oswald', sans-serif;
	font-size: 30px;
	height: 100%;
}

body {
	background-color: #0d0d0e;
	background-image: url(../images/background.jpg);
	background-size: auto 100%;
	background-repeat: no-repeat;
	color: #fff;
	height: 100%;
}

main {
	height: 100%;
	width: 100%;
	position: fixed;
	z-index: 1;
	top: 0;
	overflow-x: hidden;
}

main div {
	padding: 1rem;
}

p {
	font-size: 1rem;
	line-height: 1.1rem;
	margin-bottom: .5rem;
	text-align: center;
}

p.big {
	font-size: 1.75rem;
	line-height: 2rem;
	margin-bottom: 0;
}

p img {
	display: block;
	height: 100%;
	margin: -1rem auto 0;
	max-height: 14em;
}

@media only screen and (min-width: 900px) and (min-height: 600px) {
	main div {
		height: 100%;
		padding: 0;
		position: absolute;
		right: 0;
		width: 60%;
	}
	
	main div section {
		display: block;
		position: absolute;
		top: 50%;
		transform: translate(0, -50%);
		width: 100%;
	}
	
	
}