/* 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 {
  background-color: #efefef;
  font-family: Open Sans, Helvetica, Arial, sans-serif;
}
body {
  background: url('../imgs/gears.png');
  background-size: 100% auto;
  background-position: bottom;
  background-repeat: no-repeat;
  min-height: 100vh;
  text-align: center;
}
#background {
  background: #abbaab;
  /* fallback for old browsers */
  background: -webkit-linear-gradient(to bottom, #ffffff, #abbaab);
  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to bottom, #ffffff, #abbaab);
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  opacity: .4;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 0;
}
#content {
  padding-top: calc(50vh - 150pt);
  position: relative;
  z-index: 10;
}
h1 {
  font-size: 72pt;
  margin-bottom: 24px;
  font-weight: bold;
}
p {
  font-style: italic;
  font-size: 18pt;
  line-height: 140%;
}
@media (max-width: 700px) {
  h1 {
    font-size: 36pt;
    margin-bottom: 12pt;
  }
  p {
    font-size: 14pt;
  }
}
.button {
  border: none;
  font-size: 25px;
  padding: 15px 70px;
  transition: all 300ms;
  -moz-transition: all 300ms;
  -webkit-transition: all 300ms;
  -o-transition: all 300ms;
  -ms-transition: all 300ms;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -o-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  background: #80b63f;
  color: #fff;
  font-weight: bold;
  margin-top: 30px;
  text-decoration: none;
  display: inline-block;
  -webkit-box-shadow: 0px 5px 7px 0px rgba(50, 50, 50, 0.25);
  -moz-box-shadow: 0px 5px 7px 0px rgba(50, 50, 50, 0.25);
  box-shadow: 0px 5px 7px 0px rgba(50, 50, 50, 0.25);
}
.button:hover {
  background: #96d648;
  -webkit-box-shadow: 0px 7px 9px 0px rgba(50, 50, 50, 0.35);
  -moz-box-shadow: 0px 7px 9px 0px rgba(50, 50, 50, 0.35);
  box-shadow: 0px 7px 9px 0px rgba(50, 50, 50, 0.35);
}
#logo {
  display: inline-block;
}
@media (min-width: 701px) {
  #logo img {
    z-index: 10;
    height: 60px;
    position: fixed;
    top: 10px;
    left: 10px;
  }
  #logo:before {
    content: "";
    background: -webkit-linear-gradient(to right, #000, #abbaab);
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #000, #abbaab);
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    opacity: .1;
    height: 80px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 5;
    -webkit-box-shadow: 0px 5px 7px 0px rgba(50, 50, 50, 0.25);
    -moz-box-shadow: 0px 5px 7px 0px rgba(50, 50, 50, 0.25);
    box-shadow: 0px 5px 7px 0px rgba(50, 50, 50, 0.25);
  }
}
@media (max-width: 700px) {
  #logo {
    width: 60%;
    max-width: 200px;
    position: relative;
    margin-bottom: 20px;
  }
  #logo img {
    width: 100%;
  }
}
