/* space-mono-regular - 400 - latin */
@font-face {
	font-display: swap;
	font-family: "Space Mono";
	font-style: normal;
	font-weight: 400;
	src: url("../fonts/SpaceMono/space-mono-v15-latin-regular.eot"); /* IE9 Compat Modes */
	src:
		url("../fonts/SpaceMono/space-mono-v15-latin-regular.eot?#iefix")
			format("embedded-opentype"),
		/* IE6-IE8 */ url("../fonts/SpaceMono/space-mono-v15-latin-regular.woff2")
			format("woff2"),
		/* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
			url("../fonts/SpaceMono/space-mono-v15-latin-regular.woff") format("woff"),
		/* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
			url("../fonts/SpaceMono/space-mono-v15-latin-regular.ttf")
			format("truetype"),
		/* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
			url("../fonts/SpaceMono/space-mono-v15-latin-regular.svg#SpaceMono")
			format("svg"); /* Legacy iOS */
}

html,
body {
	font-family: "Space Mono", monospace;
	font-size: 12px;
	font-weight: 400;
}

html {
	box-sizing: border-box;
	user-select: none;
}

body {
	background-color: #000;
	margin: 0;
	padding: 0;
}

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

.wrapper {
	position: relative;
	width: 100vw;
	height: 100vh;
	background: rgba(36, 36, 36, 0.95) url("rover.jpg") center/cover no-repeat;
	background-blend-mode: multiply;
}

@supports (background: color(srgb 0.15 0.15 0.15 / 0.95)) {
	.wrapper {
		background: color(srgb 0.15 0.15 0.15 / 0.95) url("rover.jpg") center/cover
			no-repeat;
	}
}

.container {
	width: 100%;
}
.copy-container {
	text-align: center;
}
.center-xy {
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	position: absolute;
}

p {
	color: #777;
	letter-spacing: 0.2px;
	margin: 0;
}

.subhead {
	text-align: right;
	padding-right: 0rem;
}

/* Mobile-First */
h1 {
	font-size: 72px;
	color: #fff;
	letter-spacing: 0.2px;
	margin: 0;
	font-weight: 400;
}

.color-cycle {
	animation: colorCycle 8s infinite linear;
}

@keyframes colorCycle {
	0% {
		color: #ff4d4d;
	}
	25% {
		color: #ffa500;
	}
	50% {
		color: #00cc66;
	}
	75% {
		color: #3399ff;
	}
	100% {
		color: #ff4d4d;
	}
}

/* Tablet */
@media (min-width: 768px) {
	h1 {
		font-size: 72px;
	}
}

/* Desktop */
@media (min-width: 1024px) {
	h1 {
		font-size: 124px;
	}
	.subhead {
		padding-right: 1rem;
	}
}

.footer {
	width: 100%;
	/*
    background-color: #111;
    text-align: center;
    */
	padding: 1rem;
	position: fixed;
	bottom: 0;
	left: 0;
}
.footer p {
	font-size: 12px;
}
