* {
	box-sizing: border-box;
}

html {
	font-size: 16px;
	font-family: 'Poppins', sans-serif;
	overflow: hidden;
	overscroll-behavior: none;
}

body {
	padding: 0;
	margin: 0;
	background: #000;
	cursor: none;
}

.site-background {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	overflow: hidden;
	z-index: -1;
	mask-image: url(morganmackaymcbride.svg);
	mask-position: center;
	mask-size: contain;
	-webkit-mask-image: url(morganmackaymcbride.svg);
	-webkit-mask-position: center;
	-webkit-mask-size: contain;
}

.site-info {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 1rem 1rem 2rem;
	color: #FFF;
	background: rgba(0,0,0,0.5);
	text-align: center;
}

h1 {
	font-size: 2rem;
	font-weight: 200;
}

h2 {
	font-size: 1.5rem;
	font-weight: 200;
}

p {
	font-size: 1rem;
	font-weight: 200;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
	margin-top: 0;
	margin-bottom: 1rem;
	line-height: 1;
}

a.button {
	display: inline-block;
	padding: 0.25rem 2rem;
	color: #FFF;
	border: 1px solid #FFF;
	font-size: 1rem;
	font-weight: 200;
	text-transform: uppercase;
	text-decoration: none;
	letter-spacing: 0.125em;
	transition: letter-spacing 0.25s;
}

a.button:hover {
	letter-spacing: 0.25em;
}