/* VARIABLES ========================================= */

:root {
  --baseFontSize: 2vmin;
}

@media only screen and (min-width: 600px) {
	:root {
		--baseFontSize: 2vmin;
	}
}

/* GENERAL ========================================= */

/* Zero default margin & padding around common elements */
article, blockquote, body, dd, dl, dt, fieldset, figure, form, h1, h2, h3, h4, h5, h6, header, li, menu, nav, ol, p, section, ul {
	margin: 0;
	border: 0 none #FFFFFF;
	padding: 0;
}

html {
	height: 100%;
	overflow: hidden;
}

body {
	height: 100%;
	overflow: auto;
	background-color: #000000;
	background-image:  url(../images/purple_quoin.jpg);
	background-size: cover;
	background-position: 50% 50%;
	color: #ffffff;
	font-size: var(--baseFontSize);
	font-family: 'Montserrat', 'Helvetica', 'Arial', sans-serif;
	line-height: 1.4;
	text-align: center;
}

@media only screen and (min-width: var(--desktopWidth)) {
	body {
		font-size: 2vmin;
	}
}

a {
	color: #ffffff;
	text-decoration: underline;
}

a:visited {
	color: #ffffff;
}

a:hover {
	text-decoration: none;
}

img {
	border: 0 none transparent;
}

input, select, table, textarea {
	color: #000000;
	font-size: 100%;
	font-family: 'Montserrat', 'Helvetica', 'Arial', sans-serif;
}




/* CONTENT ========================================= */

h1 {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 100%;
	transform: translate(-50%, -50%);
	text-transform: uppercase;
	letter-spacing: 1.5em;
}