html, body {
  height: 100%;
}

body {
    font-family: 'PT Sans', sans-serif;
    font-size: 16px;
    color: white;
    text-align: center;
    background: #001c36; /* Old browsers */
    background: -moz-linear-gradient(45deg,  #001c36 0%, #00274c 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(45deg,  #001c36 0%,#00274c 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(45deg,  #001c36 0%,#00274c 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#001c36', endColorstr='#00274c',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}


#wrapper {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
  height: 100%;
  padding: 40px 15px 20px;
}

header .logo {
  max-width: 200px;
}

main {
  height: 35%;
}

footer {
  line-height: 1.5em;
}

a.btn {
  background-color: #fff;
  border-radius: 50px;
  padding: 15px 20px;
  /*margin: 50px 0;*/
  display: inline-block;
  color: #00274c;
  text-decoration: none;
  text-transform: uppercase;
  font-size: .8em;
  font-weight: 700;
  letter-spacing: 2px;
}

h1, h2 {
  text-transform: uppercase;
}

h2 {
  margin-top: 50px;
}

h1 {
  font-size: 1.05em;
  font-weight: 300;
  letter-spacing: 2px;
  margin: 0 auto;
}

@media only screen and (min-width : 1224px) {
  #wrapper {
    padding: 100px 0 30px;
  }
  header .logo {
    max-width: initial;
  }
  main {
    height: 45%;
  }

  h1 {
    font-size: 2em;
    max-width: 40%;
  }
}

