html {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

*,
*:before,
*:after {
	-webkit-box-sizing: inherit;
	-moz-box-sizing: inherit;
	box-sizing: inherit;
}

/* Font Smoothing */

html,
body {
	height: 100%;
	font-variant-ligatures: none;
	-webkit-font-variant-ligatures: none;
	text-rendering: optimizeLegibility;
	-moz-osx-font-smoothing: grayscale;
	font-smoothing: antialiased;
	-webkit-font-smoothing: antialiased;
	text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
	font-family: 'Fira Sans', sans-serif;
}

body {
	padding-top: 30px;
}

a {
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

@media (min-width: 320px) {

	h1,
	h2,
	h3,
	h4,
	h5,
	h6 {
		font-family: 'Anton', sans-serif;
		margin-top: 0;
		margin-bottom: 0;
		font-weight: 400;
		text-align: center;
		color: #fff;
		text-shadow: 0 10px 20px #000000;
	}

	h1 {
		font-size: 38px;
	}

	h2 {
		font-size: 32px;
	}

	p {
		font-size: 20px;
		margin: 0 0 20px;
		line-height: 1.5;
	}

	.hero-image {
		background-image: url(images/main-image.jpg);
		background-size: cover;
		background-position: center;
		width: 100%;
		max-width: 1280px;
		margin: 0 auto 50px;
		display: flex;
		flex-direction: column;
		justify-content: center;
		aspect-ratio: 1.75 / 1;
	}

}

@media (min-width: 600px) {

	h1 {
		font-size: 42px;
	}

	h2 {
		font-size: 36px;
	}

}

@media (min-width: 768px) {

	h1 {
		font-size: 50px;
	}

	h2 {
		font-size: 44px;
	}

}

@media (min-width: 992px) {

	h1 {
		font-size: 70px;
	}

	h2 {
		font-size: 50px;
	}

}