html,
body,
* {
	margin: 0;
	font-size: 10px;
}
*,
*::before,
*::after {
	box-sizing: border-box;
}
body {
	font-family: "Outfit", sans-serif;
	background: #86c5da;
	text-align: center;
	background-image: url("home.jpg");
	background-size: cover;
}
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 {
	margin: -1rem auto 0;
	font-size: 1.5rem;
	font-weight: 400;
}
p {
	font-size: 2rem;
	font-weight: 300;
	line-height: 2.5rem;
}
@media only screen and (min-width: 425px) {
	h1 {
		font-size: 9rem;
	}
}
@media only screen and (min-width: 1024px) {
	main {
		justify-content: end;
		align-items: flex-start;
		background: rgb(0,0,0,0.1);
	}
	h1 {
		font-size: 15rem;
		letter-spacing: -2px;
		margin-left: 3rem;
	}
	h2 {
		margin-top: -2.5rem;
		font-size: 2.7rem;
		margin: -3rem 0 2rem 3rem;
	}
}