body {
	margin: 0;
	overflow: hidden;
	font-size: 40px;
}

main {
	background-color: #222;
	color: white;
	height: 60vh;
	padding: 20vh 0;
	margin: 0;
	overflow: hidden;
	display: flex;
	justify-content: space-evenly;
	align-items: center;
	flex-direction: column;
	font-family: 'Prompt', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	text-align: center;
}

h1 {
	margin: 0;
	font-size: 2em;
	line-height: 1.2em;
}

p {
	font-size: 0.6em;
}

button {
	margin-top: 4em;
	padding: 0.8em 3em;
	border: none;
	border-radius: 0.6em;
	font-size: 1em;
	font-family: inherit;
	font-weight: bolder;
	color: inherit;
	background-color: #444;
	transition: all 0.1s;
	cursor: pointer;
}

button:hover {
	filter: brightness(1.2);
}

button:active {
	transform: scale(0.95);
	filter: brightness(1.1);
}

@media (max-width: 720px) {
	body {
		font-size: 32px;
	}
}

@media (max-width: 450px) {
	body {
		font-size: 22px;
	}
}
