:root {
	--primary: #EB6500;
	--primary-muted: #913f00;
	--accent: #0F1516;
}

* {
	box-sizing: border-box;
}

html, body {
	margin: 0;
	padding: 0;
	width: 100%;
	min-height: 100%;
	font-family: Arial, sans-serif;
	background: #111;
	overflow-x: hidden;
}

a {
	text-decoration: none;
}

.site-background {
	position: fixed;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1;
	background: #111;
}

.site-background__image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.site {
	position: relative;
	z-index: 1;
	
	@media screen and (width <= 1000px) {
		margin-bottom: 125px;
	}
}