* {
	box-sizing: border-box;
}

html {
	display: grid;
	justify-content: center;
}

body {
	padding: 40px;
	margin: 0;
    width: min(800px, 100vw);
	min-height: 100vh;
	background: #08090d;
	color: #e8e8e8;
	font-family: system-ui, -apple-system, sans-serif;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

main {
	flex: 1;
}

h1 {
	font-size: 3rem;
	margin: 0;
}

h2 {
	color: #888;
	margin-top: 8px;
	margin-bottom: 40px;
}

a {
    display: inline-block;
    color: #777;
    transition: 0.2s;
}

a:hover {
	color: white;
}

p {
	line-height: 1.6;
	color: #bbb;
	margin-top: 35px;
}

a.button {
    text-decoration: none;
    color: white;
    border: 1px solid #333;
    padding: 10px 16px;
    border-radius: 8px;
    margin-top: 7px;
    margin-right: 10px;
    transition: 0.2s;
}

a.button:hover {
    background: #11131a;
    border-color: #777;
}

.back {
	display: inline-block;
	margin-top: 30px;
	color: #777;
	text-decoration: none;
}

.back:hover {
	color: white;
}

footer {
	margin-top: 60px;
	color: #555;
	text-align: center;
}

footer a {
	color: #555;
	text-decoration: none;
}
