* {
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
}
:root {
  --main-ux-color: #c7cace;		/* main ux color */
  --high-ux-color: #f0f1f7;		/* gradient highlight */
  --grad-ux-color: #bbbdc1;		/* gradient end */
  --bg-ux-color: #ffffff;			/* background color */
  --main-txt-color: #8f959d;		/* main text color */
  --light-txt-color: #ccced1 ;		/* light text color (details) */
  --overlay-color: #6c00ff;		/* active/overlay color (links) */
}
html, body, div, span, p, a, em, img, strong, ul, li {
	margin: 0;
	padding: 0;
	border: 0;
	vertical-align: baseline;
	background: transparent;
	font-size: 100%;
	text-transform:none;
	max-height:99999px;
}
html { 	font-size: 12px;
	    -ms-overflow-style: -ms-autohiding-scrollbar;
}
body {
	background-color: var(--background-color);
	font-family: 'PT Mono', Arial, Verdana, sans-serif;
	font-weight: 300;
	line-height: 1.6rem;
	color: var(--main-ux-color);
}

a {
	text-decoration: none;
	color: var(--main-txt-color);
	text-shadow: none;
	transition: all 0.3s ease;
}
a:hover {
	color: var(--overlay-color);
	text-shadow: var(--main-ux-color) 1px 1px 5px;
	transition: color 0.4s ease, text-shadow 1s ease;
}
strong {
	font-weight: 600;
}
em {
	font-style: italic;
}
span {
	color: var(--light-txt-color);
}
ul {
	list-style-type: none;
	padding-left: 1.2rem;
	margin-bottom: 2.6rem;
}
li {
	margin-top: 0.8rem;
}

#main {
	top: 0;
	padding: 6.5rem 3rem 3rem;
	width: 100%;
	height: 12rem;
	position:fixed;
	background: -webkit-linear-gradient(180deg, var(--grad-ux-color), var(--high-ux-color) 60% 65%, var(--main-ux-color));
	color: var(--bg-ux-color);
}
#main img {
	display:block;
	width:auto;
	height:100%;
	fill: currentColor;
}
#content {
	display: block;
	width: 100%;
	margin-top: 14.5rem;
	padding-left: 3rem;
	padding-right: 2rem;
	background-color: var(--bg-ux-color);
	color: var(--main-txt-color);
}

/* -------------------------------------------------------------------------- */

@media only screen
 and (max-device-width : 667px)
 and (-webkit-min-device-pixel-ratio: 2)
 and (orientation: portrait) {
	html { font-size: 2em; }
}

@media only screen
 and (max-device-width : 667px)
 and (min--moz-device-pixel-ratio: 2)
 and (orientation: portrait) {
	html { font-size: 2em; }
}

@media only screen
 and (-webkit-min-device-pixel-ratio: 2)
 and (orientation: landscape) {
	html { font-size: 1.2em; }
	#main {
		float:left;
		width: 30%;
		height: 100%;
	}
	#main img {
		width:11.5rem;
		height:auto;
		float: right;
	}
	#content {
		margin-top: 7.2rem;
		margin-left:30%;
		width: 70%;
	}
}

@media only screen
 and (min--moz-device-pixel-ratio: 2)
 and (orientation: landscape) {
	html { font-size: 1.2em; }
	#main {
		float:left;
		width: 30%;
		height: 100%;
	}
	#main img {
		width:11.5rem;
		height:auto;
		float: right;
	}
	#content {
		margin-top: 7.2rem;
		margin-left:30%;
		width: 70%;
	}
}

/* -------------------------------------------------------------------------- */

@media (min-width: 668px) and (min-device-width : 668px) {
	#main {
		float:left;
		width: 36%;
		height: 100%;
		background: -webkit-linear-gradient(90deg, var(--grad-ux-color), var(--high-ux-color) 60% 65%, var(--main-ux-color));
	}
	#main img {
		width:11.5rem;
		height:auto;
		float: right;
	}
	#content {
		margin-top: 7.2rem;
		margin-left:36%;
		width: 64%;
	}
}
