@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;500;600;700&display=swap');

body {
	font-family: 'Work Sans', sans-serif;
	background-color: #121212;
	color: #f0f0f0;
	margin: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
}

.container {
	text-align: center;
	background: #171717;
	padding: 2rem 2rem;
	border-radius: 1rem;
	box-shadow: 0 0 20px rgba(0,0,0,0.5);
	border: #373737 1px solid;
}

.container h1 {
	margin-top: 0.2rem;
	margin-bottom: 0.75rem;
}

.key {
	margin: 1rem 0;
	padding: 0.5rem 1rem;
	background: #292a2c;
	border-radius: 0.5rem;
	font-weight: normal;
	color: #ffffff;
	word-break: break-all;
	border: #3a3f4b 1px solid;
}

.button {
	display: inline-block;
	background: #4cff79;
	color: #111;
	padding: 0.75rem 1.5rem;
	border-radius: 0.5rem;
	text-decoration: none;
	font-weight: bold;
	transition: 0.2s;
}
.button:hover {
	background: #3ad66c;
}

.error h1 {
	color: #ff5252;
}

a.try-again {
	color: #f0f0f0;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.2s;
}

a.try-again:hover {
	color: #4d94ff;
}