* {
	box-sizing: border-box;
}
body {
	margin: 0;
	font-family: Roboto, -apple-system, BlinkMacSystemFont, Segoe UI, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
	font-size: 14px;
	line-height: 1.5;
	
}
.app {
	min-height: 100vh;
	background: linear-gradient(135deg, #029ADD, #28314C);
}
.logo {
	width: 100%;
	text-align: center;
	padding-top: 2rem;
}

.logo img {
	max-height: 50px;
}
.button {
	background-color: #28314C;
	border: none;
	padding: 1rem;
	color: white;
	text-transform: uppercase;
	font-size: 1.5em;
	text-decoration: none;
}

main {
	position: relative;
	max-width: 56em;
	padding: 2em;
	margin: 0 auto;
	box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
	margin: 0 0 0.5em 0;
	font-weight: 400;
	line-height: 1.2;
}

h1 {
	font-size: 1.5em;
	text-transform: uppercase;
}

a {
	color: inherit;
}

code {
	font-family: menlo, inconsolata, monospace;
	font-size: calc(1em - 2px);
	color: #555;
	background-color: #f0f0f0;
	padding: 0.2em 0.4em;
	border-radius: 2px;
}

@media (min-width: 400px) {
	body {
		font-size: 16px;
	}
}