@import url("https://fonts.googleapis.com/css2?family=Fredoka:wght@300@400@500&display=swap");
html {
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
}
body {
	margin: 0px;
	min-height: 100%;
	height: 100vh;
	color: #fff;
	font-family: "Fredoka", sans-serif;
}
main {
	min-height: 100%;
	background: url("./background.png") rgba(20, 19, 19, 0.73);
	background-size: cover;
	background-blend-mode: multiply;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 0 20px;
}
h1 {
	margin-top: 0px;
	margin-bottom: 0px;
	font-size: 50px;
	text-align: center;
	/* box-shadow: ; */
}
h1 span {
	color: #e56224;
}
p {
	font-size: 20px;
	font-weight: 400;
	text-align: center;
	line-height: 30px;
}
