html {
	box-sizing: border-box;
	font-family: system, -apple-system,
      ".SFNSDisplay-Regular", "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
}
body {
	/*width: 100vw;
	height: 100vh;*/
	margin: 0;
	background: #353531;
    background: linear-gradient(to right, #353531 0%,#353531 8.3%,#ec4e20 8.3%,#ec4e20 16.7%,#ff9505 16.7%,#ff9505 33.3%,#016fb9 33.3%,#016fb9 58.3%,#6ea73c 58.3%,#6ea73c 100%);
	box-sizing: border-box;
}
*, *:before, *:after {
	box-sizing: inherit;
}
h2 {
	font-family: 'Merriweather', serif;
	font-style: italic;
}
li {
	text-align: left;
	line-height: 1.4em;
}
.text-center {
	text-align: center !important;
}
.sm {
	font-size: 0.8em;
}
.disabled {
	opacity: 0.7;
	pointer-events: none;
}
.no_marg {
	margin: 0;
}
.big {
	font-size: 1.3em;
}

svg#logosplash {
	position: absolute;
	z-index: -1;
	width: 80%; /*1024px*/
	height: auto; /*768px*/
	top: 0px; /*-90px*/
	left: 10%;
	opacity: 0.3;
	transition: 1s;
}
svg#logosplash path {
	fill: rgba(15, 15, 15,1);
}
.profile_pic {
	border-radius: 50%;
	border: 8px solid #fff;
	box-shadow: 0 0 3px 1px #666;
	overflow: hidden;
	background-color: #fff;
	width: 15vw;
	height: 15vw;
	margin: -7.5vw auto 0;
	transition: margin 1s, width 1s, height 1s;
	transform: translate3d(0);
}
.profile_pic img {
	width: 100%;
	height: 100%;
}
.intro_area {
	font-family: 'Oxygen', sans-serif;
	background-color: rgba(0,0,0,0.95);
	box-shadow: 0 0 3px 0 #333;
	padding: 20px 15vw 20px;
	margin: 10px 0;
	color: #fefefe;
	text-shadow: 0 0 2px #000;
	text-align: justify;
}
.intro_area a {
  color: #0cf;
}
ul.boxlist {
	list-style-type: none;
	margin: 0 auto;
	padding: 0;
	width: 250px;
}
ul.boxlist li {
	vertical-align: top;
	border: 1px solid #999;
	border-radius: 30px;
	padding: 10px;
	margin-bottom: 10px;
	text-align: center;
	transition: 0.5s;
	line-height: 1em;
}
ul.boxlist li:hover {
	background-color: rgba(0,0,0,0.8);
	color: #fff;
}
ul.boxlist li a {
	text-decoration: none;
	color: inherit;
	display: block;
}
ul.boxlist li p {
	vertical-align: middle;
}
.quote_area {
	text-align: center;
	font-style: italic;
	font-family: 'Merriweather', serif;
}
.darkmood {
	color: #fff;
	text-shadow: 0 1px 2px #000, 0 2px 10px #000;
}
#main_quote {
	margin-top: 30vh;
	margin-bottom: 20vh;
}

.showcase_area {
	background-color: rgba(0,0,0,0.8);
	margin: 10px 0;
	display: flex;
	align-items: center;
}
.showcase_area > div {
	vertical-align: middle;
	width: 32%;
}
.showcase_area .image_area {
	width: 66%;
}
.showcase_area .image_area img {
	width: 100%;
	display: block;
	margin: auto;
}
.showcase_area .caption_area {
	color: #fff;
	font-family: 'Oxygen', sans-serif;
	font-size: 1.0em;
	padding: 20px;
	margin-left: 10px;
}
.copyright_area {
	text-align: center;
	font-size: 0.8em;
	color: rgba(0,0,0,0.5);
	margin-bottom: 15px;
}
.button {
	display: inline-block;
	width: auto;
	padding: 5px 10px;
	border-radius: 3px;
	color: #fff;
	text-shadow: 0 1px 2px #333;
	text-decoration: none;
	background-color: steelblue;
	box-shadow: 0 1px 2px 0 #000, 0 0px 2px 0 #000 inset;
	transition: 0.5s;
}
.button:hover {
	box-shadow: 0 2px 3px 0 #000, 0 0px 6px 0 #fff inset;
}

@media screen and (max-width: 800px) {

html, li {
	font-size: 14px;
}
ul {
	padding-left: 15px;
}
.big {
	font-size: 1.1em;
}

svg#logosplash {
	width: 100%;
	height: auto;
	top: 20vh;
	left: 0;
}
.intro_area {
	/*width: 90%;
	top: 30vh;
	left: 0;
	margin: auto;*/
}
.profile_pic {
	width: 30vw;
	height: 30vw;
	margin-top: -15vw;
}

}

@media screen and (min-width: 500px) and (max-width: 800px) {

.profile_pic {
	width: 22vw;
	height: 22vw;
	margin-top: -11vw;
}
p, ul {
	-webkit-text-size-adjust:100%;
	text-size-adjust:100%;
}

}

@media screen and (max-width: 600px) {

body {
	background-attachment: initial;
}
.showcase_area {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}
.showcase_area .image_area {
	width: 100%;
	order: 1;
}
.showcase_area .caption_area {
	width: 100%;
	order: 2;
	padding-top: 10px;
	margin-left: 0;
}
ul.boxlist {
	width: 100%;
}

}