@import url('https://fonts.googleapis.com/css2?family=Covered+By+Your+Grace&family=Titillium+Web&display=swap');

html, body {
	min-width: 100%;
	min-height: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-size: 62.5%;
}

body {
	background: #000 url(background.jpg) center center no-repeat;
	background-size: cover;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	text-shadow: 1px 1px 2px #000;
}

main {
	padding: 0 30%;
	box-sizing: border-box;
}

h1 {
	font-family: 'Covered By Your Grace', cursive;
	font-size: 5rem;
}

p {
	font-family: 'Titillium Web', sans-serif;
	font-size: 2rem;
}

@media (max-width: 700px) {
	main {
		padding: 10%;
	}
}