/* LAYOUT */

* {
	box-sizing: border-box;
}

html {
	height: 100%;
}

body {
	background: linear-gradient(0deg, rgba(0,0,0,0.0), #161617);
	background-color: #000;
	-webkit-font-smoothing: antialiased;
	color: rgb(255,255,255);
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
	font-size: 100%;
	line-height: 24px;
	text-rendering: optimizelegibility;
	height: 100%;
	font-weight: 500;
	padding: 32px;
    height: 100%;
	margin: 0;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.container {
	margin: 0 auto;
	max-width: 768px;
}

.icon {
	margin: auto;
}

.device {
	display: block;
	margin: 0 auto;
}

footer {
	font-size: 0.75em;
	line-height: 1.5em;
	color: rgba(255,255,255,0.5);
	text-align: center;
}

section, footer, p, ul {
	margin-bottom: 16px;
}

footer {
	padding-bottom: 16px;
}

/* TYPOGRAPHY */

h1 {
	font-size: 24px;
	font-weight: 800;
}

h2 {
	font-weight: 800;
	font-size: 0.8rem;
	text-transform: uppercase;
}

li {
	list-style-type: initial;
	color: rgb(191,191,191);
}

a {
	text-decoration: none;
	color: #F5A653;
}

a.incognito {
	color: inherit;
	text-decoration: underline;
}

/* HELPER CLASSES */

.sp-lg {
	margin-bottom: 48px;
}

.sp-md {
	margin-bottom: 24px;
}

.sp-sm {
	margin-bottom: 16px;
}

/* MEDIA QUERIES */

@media only screen and (min-width: 768px) {
	
	body {
		padding: 64px;
	}
	
	.content {
		max-width: 384px;
		float: left;
	}
	
	.image {
		max-width: 384px;
		float: right;
	}
	
	footer {
		clear: both;
	}
	
	.icon {
		margin: 0 auto 24px 0;
	}

}