@charset "UTF-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;700&display=swap');
html, body {
	margin: 0;
	padding: 0;
}
html {
	width: 100%;
	height: 100%;
	background: #666666 url(background.jpg) no-repeat center fixed;
	background-size: cover;
}
body {
	color: #ffffff;
	font-family: Open Sans, Arial, sans-serif;
	font-size: 120%;
	text-align: center;
}
h1, h2, h3, h4, h5, h6, p {
	margin: 15px;
}
h1 {
	font-size: 240%;
	text-shadow: 0 0 10px #333333;
}
h2 {
	font-size: 120%;
	text-shadow: 0 0 10px #333333;
}
h3 {
	font-size: 110%;
}
h4 {
	font-size: 110%;
	font-weight: normal;
}
a {
	color: #dddddd;
	text-decoration: none;
}
a:hover {
	color: #ffffff;
	text-decoration: underline;
}
div {
	box-sizing: border-box;
}

div.feature {
	display: inline-block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	padding: 15px;
	width: auto;
	/*background: rgba(0,0,0,0.5);*/
	color: #ffffff;
}
div.comingsoon {
	display: block;
	position: absolute;
	bottom: 0;
	padding: 5px;
	width: 100%;
	background: #000000;
	color: #ffffff;
}

@media screen and (max-width: 599px) {
	h2 {
		font-size: 120%;
	}
	h3, h4 {
		font-size: 100%;
	}
}
@media screen and (min-width: 600px) {
	div.comingsoon h3 {
		float: left;
	}
	div.comingsoon h4 {
		float: right;
	}
}