html, body {
  width: 100%;
  max-width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  background: #1fa2da;
}
*, *:before, *:after {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  margin: 0;
  padding: 0;
}
a, a:visited, a:hover {
  color: inherit;
  text-decoration: none;
}
.bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('bg.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 1;
}
main {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  text-align: left;
  padding: 0 calc(0.2em + 6vw);
  display: table;
  z-index: 2;
}
.main-inner {
  position: relative;
  height: 50%;
  width: 100%;
  display: table-cell;
  vertical-align: top;
}
.holder {
  position: relative;
  display: inline-block;
  text-align: center;
  padding: 9vw 3.5vw;
  margin: 0 0;
}
h1 {
  font-family: 'Lobster Two', cursive;
  color: #FFFFFF;
  font-weight: 700;
  font-style: italic;
  font-size: calc(2em + 2vw);
  -webkit-font-smoothing: antialiased;
  text-shadow: 0px 0px 8px rgba(255,205,25,0.3);
  margin: 0 auto;
}
.logo {
  position: relative;
  display: inline-block;
  width: calc(100px + 2.5vw);
  margin: 0 0 1vw 0;
}
.button {
  display: inline-block;
  height: 52px;
  line-height: 52px;
  width: 190px;
  background: #FFFFFF;
  margin: 1.5vw 15px 0 auto;
  border-radius: 100px;
  padding: 0 16px;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.12);
  -webkit-box-shadow: 0px 8px 16px rgba(0,0,0,0.12);
  -moz-box-shadow: 0px 8px 16px rgba(0,0,0,0.12);
  cursor: pointer;
}
.button span {
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  text-transform: uppercase;
  font-size: 0.82em;
  color: #126094;
  font-family: 'Open Sans Condensed', sans-serif;
}
hr {
  position: relative;
  margin: calc(7px + 0.5vw) auto;
  width: 100%;
  max-width: 120px;
  height: 4px;
  border-radius: 4px;
  background: #FFFFFF;
}
