@import url('https://fonts.googleapis.com/css?family=Rajdhani:700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Titillium+Web:400,400i&display=swap');

html, body {
	
	background-color: #050b16;
	font-family: 'Titillium Web', serif;
	color: white;
	height: 100%;
	
}

header, footer {
	
	align-items: center;
	flex-direction: column;
	display: flex;
	justify-content: center;
	overflow: hidden;
	text-align: center;
	
}

a:link, a:hover, a:active, a:visited {
	
	color: white;
	text-decoration: none;
	
}

header {
	
	background-color: #0d1520;
	height: 100%;
	margin-bottom: 20vh;
	
}

header img {
	
	display: block;
	height: 30px;
	margin: 0 20px 30px 20px;
	
}

h1 {
	
	font-family: 'Rajdhani', serif;
	text-transform: uppercase;
	
}

header h1, header p {
	
	margin-bottom: 15px;
	margin-top: 15px;
	width: 300px;
	
}

header h1 {
	
	font-size: 3.5em;
	line-height: 1em;
	
}

header p {
	
	font-size: 1em;
	line-height: 1.5em;
	
}

button, .button {
	
	background-color: #2967da;
	border-radius: 4px;
	color: white;
	padding: 12px 20px;
	
}

button.pill, .button.pill {
	
	border-radius: 30px;
	
}

header .button {
	
	background-image: linear-gradient(to bottom, #2967da, #1654c7);
	box-shadow: 3px 4px 5px rgba(0, 0, 0, 0.2);
	font-size: 1.2em;
	margin-bottom: 10px;
	margin-top: 15px;
	transition-duration: 0.3s;
	width: 200px;
	
}

header .button:hover {
	
	padding-left: 30px;
	padding-right: 30px;
	transition-duration: 0.3s;
	
}

small {
	
	width: 150px;
	
}

footer {
	
	bottom: 0;
	height: 20vh;
	position: fixed;
	width: 100%;
	z-index: -1;
	
}

@media (max-height: 520px) {
	
	header p {
		
		display: none;
		
	}
	
}

@media (max-height: 400px) {
	
	header img, header p {
		
		display: none;
		
	}
	
}