body{
	overflow: hidden;
	display: inline-block;
	width: 100%;
    min-width: 200px;
	height: 100%;
	background-color: #000000;
	background-image: url("images/background.jpeg");
  	background-repeat: no-repeat;
  	background-size: 100% 100%;
	color: #ffffff;/*Text color*/
	margin: 0px;
	font-family: 'Work Sans', sans-serif;
	z-index: 0;
}

.textdiv{
	display: inline-block;
    width: 100%;
    height: 100px;
    margin-top: 150px;
    z-index: 10;
}

h1{
	text-align: center;
	margin: 0px;
	margin-top: 10px;
	font-family: 'Lexend Mega', sans-serif;
	font-size: 100px;
}
h2{
	text-align: center;
	margin: 0px;
	margin-top: 10px;
	margin-bottom: 30px;
	font-size: 20px;
}
h4{
	text-align: center;
	margin: 0px;
	font-size: 14px;
}

.playbutton{
	display: block;
	width: 201px;
	margin: 0 auto;
}

.playbutton img{
	width: 200px;
}

.featureimg{
	display: block;
	position: fixed;
	bottom: 0%;
	left: 50%;
	width: 650px;
	transform: translate(-50%, 0%);
	z-index: 5;
}

/*Mobile stuff*/
@media only screen and (max-width: 700px) {
	h1{
		margin-top: 5px;
		font-family: 'Lexend Mega', sans-serif;
		font-size: 40px;
	}
	h2{
		margin-top: 5px;
		margin-bottom: 15px;
		font-size: 15px;
	}
	h4{
		font-size: 7px;
	}
	.featureimg{
		display: block;
		position: fixed;
		bottom: 0%;
		left: 50%;
		width: 70%;
		transform: translate(-50%, 0%);
	}
}