@import url(fontawesome-all.min.css);
@import url('https://fonts.googleapis.com/css?family=Roboto:300,700|Rubik:700&display=swap');

/* Normalize */

html, body, div, span, applet, object,
iframe, h1, h2, h3, h4, h5, h6, p, blockquote,
pre, a, abbr, acronym, address, big, cite,
code, del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var, b,
u, i, center, dl, dt, dd, ol, ul, li, fieldset,
form, label, legend, table, caption, tbody,
tfoot, thead, tr, th, td, article, aside,
canvas, details, embed, figure, figcaption,
footer, header, hgroup, menu, nav, output, ruby,
section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}

body {
	line-height: 1;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

body {
	-webkit-text-size-adjust: none;
}

mark {
	background-color: transparent;
	color: inherit;
}

input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

input, select, textarea {
	-moz-appearance: none;
	-webkit-appearance: none;
	-ms-appearance: none;
	appearance: none;
}

/* Basic */

html {
	box-sizing: border-box;
}

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

html {
	height: 100%;
}

body {
	height: 100%;
	background-color: #000;
	overflow: hidden;
}

/* Type */

body, input, select, textarea {
	color: #fff;
	font-family: "Roboto", sans-serif;
	font-size: 13pt;
	font-weight: 300;
	line-height: 1.5em;
}

a {
	-moz-transition: opacity .2s ease-in-out;
	-webkit-transition: opacity .2s ease-in-out;
	-ms-transition: opacity .2s ease-in-out;
	transition: opacity .2s ease-in-out;
	color: inherit;
	text-decoration: none;
}

a:hover {
	opacity: .5;
}

p {
	margin: 0 0 1.5em 0;
}

.subline {
	line-height: 1.75em;
	opacity: .5;
}

strong, b {
	font-weight: 700;
}

h1 {
	font-family: "Rubik", sans-serif;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .3em;
	line-height: 1.5em;
	margin: 0 0 .5em 0;
}

h2, h3, h4, h5, h6 {
	font-family: "Roboto", sans-serif;
	font-weight: 700;
	line-height: 1.5em;
	margin: 0;
}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
	color: inherit;
	text-decoration: none;
}

h1 {
	font-size: 2em;
}

h2 {
	font-size: 1.75em;
}

h3 {
	font-size: 1.5em;
}

h4 {
	font-size: 1.25em;
}

h5 {
	font-size: 1em;
}

h6 {
	font-size: 1em;
}

/* List */

ol {
	list-style: decimal;
	margin: 0 0 1.5em 0;
	padding-left: 1em;
}

ul {
	list-style: circle;
	margin: 0 0 1.5em 0;
	padding-left: 1em;
}

ol li, ul li {
	padding-left: .5em;
}

/* Icons */

.icon {
	text-decoration: none;
	border-bottom: none;
	position: relative;
}

.icon:before {
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	line-height: 1em;
	text-transform: none !important;
	font-family: 'Font Awesome 5 Free';
	font-weight: 300;
}

.icon > .label {
	display: none;
}

.icon:before {
	line-height: solid;
}

.icon.solid:before {
	font-weight: 900;
}

.icon.brands:before {
	font-family: 'Font Awesome 5 Brands';
}

ul.icons {
	cursor: default;
	list-style: none;
	padding-left: 0;
	margin-top: -.675em;
}

ul.icons li {
	display: inline-block;
	padding: .5em;
}

ul.icons li a {
	text-decoration: none;
	position: relative;
	display: block;
	width: 3em;
	height: 3em;
	border-radius: 100%;
	border: solid 1px #fff;
	line-height: 3em;
	overflow: hidden;
	text-align: center;
	text-indent: 3em;
	white-space: nowrap;
	opacity: .5;
}

ul.icons li a:hover {
	opacity: 1;
}

ul.icons li a:before {
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	line-height: 1em;
	text-transform: none !important;
	font-family: 'Font Awesome 5 Free';
	font-weight: 300;
}

ul.icons li a:before {
	position: absolute;
	top: 0;
	left: 0;
	width: inherit;
	height: inherit;
	font-size: 1.5rem;
	line-height: inherit;
	text-align: center;
	text-indent: 0;
}

/* Wrapper */

#wrapper {
	display: -moz-flex;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	-moz-align-items: center;
	-webkit-align-items: center;
	-ms-align-items: center;
	align-items: center;
	-moz-justify-content: space-between;
	-webkit-justify-content: space-between;
	-ms-justify-content: space-between;
	justify-content: space-between;
	-moz-flex-direction: column;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-moz-perspective: 1000px;
	-webkit-perspective: 1000px;
	-ms-perspective: 1000px;
	perspective: 1000px;
	position: relative;
	min-height: 100%;
	padding: 1.5em;
	z-index: 2;
}

#wrapper > * {
	z-index: 1;
}

#wrapper:before {
	content: '';
	display: block;
}

body.is-ie #wrapper {
	height: 100%;
}

.glitch {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-position: center;
	background-size: cover;
	opacity: 1;
}

/* Main */

#main {
	padding: 4.5em 3em 3em 3em;
	cursor: default;
	max-width: 100%;
	position: relative;
	text-align: center;
	width: 30em;
	background: #000;
	border-radius: .4em;
	box-shadow: 0 2rem 4rem .25rem rgba(0, 0, 0, .5);
}

#main .avatar {
	position: relative;
	display: block;
	margin-bottom: 2em;
}

#main .avatar img {
	display: block;
	margin: 0 auto;
	width: 100px;
	height: 100px;
}

/* Footer */

#footer {
	-moz-align-self: -moz-flex-end;
	-webkit-align-self: -webkit-flex-end;
	-ms-align-self: -ms-flex-end;
	align-self: flex-end;
	width: 100%;
	padding: 1.5em 0 0 0;
	cursor: default;
	text-align: center;
	opacity: .5;
}

#footer .copyright {
	margin: 0;
	padding: 0;
	font-size: .8em;
	list-style: none;
}

#footer .copyright li {
	display: inline-block;
	margin: 0 0 0 .85em;
	padding: 0 0 0 .85em;
	border-left: solid 1px rgba(255, 255, 255, .5);
	line-height: 1em;
}

#footer .copyright li:first-child {
	border-left: 0;
	margin: 0;
	padding: 0;
}

/* Modal */

.modal {
	display: none;
	position: fixed;
	background: transparent;
	top: 0;
	bottom: 0;
	left: 0;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: center;
	justify-content: center;
	right: 0;
	transition: background 1s;
	visibility: hidden;
	box-shadow: 0 2rem 4rem .25rem rgba(0, 0, 0, .5);
	z-index: 1000;
}

.modal-content {
	width: 30em;
	position: relative;
	max-height: calc(100vh - 150px);
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	color: #222;
	background: #fff;
	border-radius: .4em;
}

.modal-header {
	padding: 1em;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-flex-align: center;
	align-items: center;
	background: #fff;
	border-radius: .4em;
}

.modal-heading {
	margin: 0;
}

.modal-body {
	padding: 1em;
	overflow: auto;
	max-height: 30em;
}

.modal-close {
	position: absolute;
	right: 20px;
	top: 20px;
	width: 32px;
	height: 32px;
	opacity:.5;
}

.modal-close:hover {
	opacity: 1;
}

.modal-close:before, .modal-close:after {
	position: absolute;
	left: 15px;
	content: ' ';
	height: 33px;
	width: 2px;
	background-color: #222;
}

.modal-close:before {
	transform: rotate(45deg);
}

.modal-close:after {
	transform: rotate(-45deg);
}

.modal:target {
	background: rgba(0, 0, 0, .75);
	display: -ms-flexbox;
	display: flex;
	visibility: visible;
}

/* Media Queries */

@media screen and (max-width: 480px) {
	body, input, select, textarea {
		font-size: .9rem;
	}
	h1 {
		font-size: 1.65em;
	}
	ul.icons li a:before {
		font-size: 1.25em;
	}
	#main {
		padding: 4em 2em 2.5em 2em;
		width: 100%;
	}
	#main .avatar img {
		width: 80px;
		height: 80px;
	}
	#wrapper {
		padding: .75em;
	}
	.modal:target .modal-content {
		width: 100%;
	}
	.modal-close {
		right: 15px;
		top: 15px;
	}
}

::selection {
    background: rgba(0, 0, 0, .1);
    text-shadow: none
}

::-moz-selection {
    background: rgba(0, 0, 0, .1);
    text-shadow: none
}