html,
body,
* {
	margin: 0;
	font-size: 10px;
}
*,
*::before,
*::after {
	box-sizing: border-box;
}
body {
	font-family: "Outfit", sans-serif;
	/*background: #86c5da;*/
	background: black;
	text-align: center;
	background-image: url("lemons.jpg");
	background-size: cover;
	background-position: center;
}
main {
	height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: #fafafa;
	background: rgb(0,0,0,0.3);
}
h1 {
	margin: 0 auto;
	font-family: "Fjalla One", sans-serif;
	font-size: 8rem;
	letter-spacing: -1px;
	text-transform: uppercase;
}
h2,
a {
	margin: -1rem auto 0;
	font-size: 2rem;
	font-weight: 400;
	max-width: 30rem;
}
p {
	font-size: 2rem;
	font-weight: 300;
	line-height: 2.5rem;
}
a {
	text-decoration: none;
	color: #fafafa;
}
@media only screen and (min-width: 425px) {
	h1 {
		font-size: 9rem;
	}
}
@media only screen and (min-width: 1024px) {

	h1 {
		font-size: 15rem;
		letter-spacing: -2px;
	}
	h2,
	a {
		margin-top: -2.5rem;
		font-size: 2.7rem;
		max-width: 100%;
		text-align: center;
	}
	span {
		display: inline-block !important;
		font-size: 2.7rem;
	}
}