/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

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;
}
/* HTML5 display-role reset for older browsers */
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;
}

/*************************************************/
/*************************************************/
/*************************************************/

html, body {
	height: 100%;
}

body {
	background-color: #FFFFFF;
	font-family: 'Helvetica Neue', 'Helvetica', 'Lucida Sans Unicode', 'Lucida Grande', 'Tahoma', 'verdana', sans-serif;
	/*font-size: 12px;*/
	color: #303030;
}

.page-content {
	min-height: 100%;
	margin-bottom: -80px;
	display: flex;
	flex-direction: column;
	justify-content: space-around;/*flex-start;*/
	align-items: center;
}

/* Page content */

.hero {
	background: url("hero.png") no-repeat top;
	background-size: cover;
	width: 100%;
	max-width: 570px;
	height: 300px;
	color: #FFFFFF;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	border-radius: 8px;
	margin-top: 60px;
	margin-bottom: 30px;
	transition: margin 0.5s, height 0.5s, max-width 0.5s, box-shadow 0.5s, transform 0.5s;
}

.hero h1 {
	font-size: 3.1em;
	font-weight: 500;
	margin-top: auto;
	margin-bottom: auto;
	padding-left: 8px;
	padding-right: 8px;
}

.hero h1 small {
	font-size: 0.6em;
	font-weight: 200;
}

.hero-desc {
	font-size: 1em;
	text-align: center;
	margin-top: 30px;
	margin-bottom: 30px;
}

.hero-desc p {
	padding: 6px 0 6px 0;
}

.contact {
	text-align: center;
	margin-top: 30px;
	margin-bottom: 30px;
}

.contact header {
	font-size: 0.75em;
	color: #BCBCBC;
	font-weight: 500;
}

.contact ul {
	display: flex;
}

.contact ul > li {
	color: #BFBFBF;
	padding: 10px;
	font-size: 1.3em;
	min-height: 1.3em;
}

a.email:hover, a.email:active {
	color: #333333;
}

a.linkedin:hover, a.linkedin:active {
	color: #0077B5;
}

a.github:hover, a.github:active {
	color: #333333;
}

a.twitter:hover, a.twitter:active {
	color: #55ACEE;
}

a.medium:hover, a.medium:active {
	color: #00AB6C;
}

a.instagram:hover, a.instagram:active {
	color: #D5347B;
}

a.snapchat:hover, a.snapchat:active {
	color: #FFFC00;
}

.page-content:after {
	content: "";
	display: block;
}

.page-footer, .page-content:after {
	height: 80px;
}

.page-footer {
	display: flex;
	justify-content: center;
	align-items: center;
	background: #FBFBFB;
	color: #A8A8A8;
	text-align: center;
	font-size: 0.6em;
	box-sizing: border-box;
	border-style: solid;
	border-width: 0 0 4px 0;
	border-image: linear-gradient(to right, rgba(255, 0, 40, 1), rgba(254, 172, 60, 1)) 100% 1 stretch;
}

.page-footer p {
	padding-top: 4px;
	padding-bottom: 4px;
}

a {
	text-decoration: none;
	font-weight: bold;
	color: inherit;
	transition: 0.3s ease-out;
}

a:hover, a:active {
	color: #303030;
}

@media screen and (max-width: 570px) {
	
	.page-content {
		justify-content: space-between;
	}
	
	.hero {
		border-radius: 0px;
		margin-top: 0px;
	}
	
	.hero h1 {
		font-size: 2.6em;
	}
	
}

@media screen and (max-width: 320px) {
	
	.hero {
		height: 170px;
	}
	
	.hero h1 {
		font-size: 2em;
	}
	
}

@media screen and (min-width: 321px) and (max-width: 375px) {
	
	.hero {
		height: 210px;
	}
	
	.hero h1 {
		font-size: 2.6em;
	}
}

@media screen and (min-width: 571px) {
	
	.hero:hover, .hero:active {
		box-shadow: 0px 45px 100px rgba(0, 0, 0, 0.4);
		max-width: 627px;
		height: 330px;
		margin-top: 45px;
		margin-bottom: 15px;
	}
	
}

@media screen and (prefers-color-scheme: dark) {
	body {
	  background: #2d3239;
	  color: rgb(228, 228, 228);
	}
  
	h1 {
	  color: #FAFAFA;
	}

	.contact header {
		color: #CFCFCF;
	}
	
	.contact ul > li {
		color: #CFCFCF;
	}
	
	a.email:hover, a.email:active {
		color: #FAFAFA;
	}
	
	a.linkedin:hover, a.linkedin:active {
		color: #0077B5;
	}
	
	a.github:hover, a.github:active {
		color: #FAFAFA;
	}
	
	a.twitter:hover, a.twitter:active {
		color: #55ACEE;
	}
	
	a.medium:hover, a.medium:active {
		color: #00AB6C;
	}
	
	a.instagram:hover, a.instagram:active {
		color: #D5347B;
	}
	
	a.snapchat:hover, a.snapchat:active {
		color: #FFFC00;
	}
	
	.page-footer {
		background: #272b31;
		/* color: #A8A8A8; */
		color: #808080;
		border-image: linear-gradient(to right, rgba(255, 0, 40, 1), rgba(254, 172, 60, 1)) 100% 1 stretch;
	}
	
	a:hover, a:active {
		color: #FAFAFA;
	}
  }
