/* app shell styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Roboto', Verdana, Arial, serif;
}

html, body {
	height: 100%;
	width: 100%;
	background: #5465ff;
	background: -webkit-linear-gradient(-45deg, #5465ff 0%,#49ff8f 100%);
	background: linear-gradient(135deg, #5465ff 0%,#49ff8f 100%);
	color: #fff;
}

body {
	position: relative;
	transform: translateZ(0);
}

body:before {
	content: "";
	position: absolute;
	height: 100%;
	width: 100%;
	z-index: -1;
	background-image: url(./images/space-background.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	opacity: 0.33;
}

header {
	padding: 1.5em;
	background-color: rgba(0, 0, 0, 0.4);
	width: 100%;
}

h1 {
	color: #fff;
	font-weight: 100;
	font-size: 2rem;
}

main {
	text-align: center;
}

p {
	margin: 2rem;
}