/* 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;
}



@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,400,700");

html {
  position: relative;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -apple-font-smoothing: apple-font-smoothing;
  -moz-osx-font-smoothing: grayscale;
  height: 100%;
}

body {
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, Sans-Serif;
  font-size: 100%;
  font-weight: 400;
  line-height: 1.4;
  min-height: 100%;
  position: relative;
  background-color: #eee;
  color:#444;

  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+35,d8d8d8+100 */
  background: #ffffff; /* Old browsers */
  background: -moz-radial-gradient(center, ellipse cover, #ffffff 35%, #d8d8d8 100%); /* FF3.6-15 */
  background: -webkit-radial-gradient(center, ellipse cover, #ffffff 35%,#d8d8d8 100%); /* Chrome10-25,Safari5.1-6 */
  background: radial-gradient(ellipse at center, #ffffff 35%,#d8d8d8 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#d8d8d8',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}

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

* {
  -webkit-touch-callout: none;
  -webkit-text-size-adjust: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: text;
}

::-moz-selection {
  color: #fff;
  background: #2d2d2d;
}

::selection {
  color: #fff;
  background: #2d2d2d;
}




/* Main */
.content{
	max-width: 400px;
	margin:16vh auto;
	padding:16px;
}
.logo{
	width: 120px;
	margin:0 auto;
}

.green-text{
	color:#1abc9c;
}

.contact{
	text-align: center;
	margin-bottom: 1.6em;
}

.contact h1{
	font-size: 138%;
	font-weight: 300;

	letter-spacing: 1px;
	margin-left: 10px;
	/*margin-top: -1em;*/
}
.contact h2{
	margin-bottom: 1em;
	margin-left: 10px;
}
.contact p a{
	margin-bottom: 0.4em;
	color: #888;
	text-decoration: none;
	transition:color 0.4s;
}
.contact p a:hover{
	color:#1abc9c;
}




.download p{
	text-align: center;
}
.download p span{
	font-weight: 700;
}
.download a{
	color:#1abc9c;
	text-decoration: none;
	opacity: 0.6;
	transition:opacity 0.4s;
	font-weight: 600;

}
.download a:hover{
	opacity:1;
}









































