html,
body,
* {
	margin: 0;
	font-size: 10px;
}
*,
*::before,
*::after {
	box-sizing: border-box;
}
body {
	font-family: "Lato", sans-serif;
	background: black;
	text-align: center;
	background-image: url("../img/sonja-kelly-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;
}
h1,
h2 {
	text-transform: uppercase;
}
h2 {
	font-size: 1.85rem;
	letter-spacing: 2px;
	font-weight: 400;
	margin-top: -1rem;
}
a {
	margin: -1rem auto 0;
	max-width: 30rem;
}
p {
	font-size: 2rem;
	font-weight: 300;
	line-height: 2.5rem;
}
a {
	font-weight: 400;
	font-size: 2rem;
	text-decoration: none;
	color: #fafafa;
}
.buttons {
	margin-top: 3rem;
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 1rem;
}
button {
	border: none;
	background: none;
	margin-top: 2rem;
}
button a {
	border: 2px solid #fafafa;
	width: 100%;
	display: inline-block;
	padding: 1.5rem 2rem;
	font-family: "Lato", sans-serif;
	text-transform: uppercase;
	text-decoration: none;
	font-size: 1.2rem;
	font-weight: 900;
	letter-spacing: 3px;
	background: none;
	color: #fafafa;
	transition: 1s all;
}
button a:hover {
	background: #acbebe;
	color: #1e2626;
	border-color: #acbebe;
}
@media only screen and (min-width: 425px) {
	h1 {
		font-size: 9rem;
	}
}