@import url(https://fonts.googleapis.com/css?family=Roboto:400,100,900);
* {
  box-sizing: inherit;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: .6s;
          transition-duration: .6s;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
}

html,
body {
  box-sizing: border-box;
  height: 100%;
  width: 100%;
}

body {
  overflow-x: hidden;
  overflow-y: auto;
  background: black;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
}

.buttons {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  height: 100%;
  -webkit-box-pack: center;
          justify-content: center;
  text-align: center;
  width: 100%;
}

.container {
  -webkit-box-align: center;
          align-items: center;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-pack: center;
          justify-content: center;
  padding: 1em;
  text-align: center;
}
@media (min-width: 600px) {
  .container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-direction: row;
    -webkit-box-pack: justify;
            justify-content: space-between;
  }
}

h1 {
  color: whitesmoke;
  font-size: 1.25em;
  font-weight: 900;
  margin: 0 0 2em;
}

h2 {
  color: whitesmoke
}

@media (min-width: 450px) {
    h1 {
      font-size: 1.75em;
    }
  }
  @media (min-width: 760px) {
    h1 {
      font-size: 3.25em;
    }
  }
  @media (min-width: 900px) {
    h1 {
      font-size: 5.25em;
      margin: 0 0 1em;
    }
  }
  
  p {
    color: whitesmoke;
    font-size: 12px;
  }
  @media (min-width: 600px) {
    p {
      left: 50%;
      position: absolute;
      -webkit-transform: translate(-50%, 0);
              transform: translate(-50%, 0);
      top: 90%;
    }
  }
  @media (max-height: 500px) {
    p {
      left: 0;
      position: relative;
      top: 0;
      -webkit-transform: translate(0, 0);
              transform: translate(0, 0);
    }
  }
  p a {
    background: rgba(255, 255, 255, 0);
    border-bottom: 1px solid;
    color: whitesmoke;
    line-height: 1.4;
    padding: .25em;
    text-decoration: none;
  }
  p a:hover {
    background: whitesmoke;
    color: whitesmoke;
  }
  
  .btn {
    color: whitesmoke;
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
    line-height: 45px;
    margin: 0 0 2em;
    max-width: 285px;
    position: relative;
    text-decoration: none;
    text-transform: uppercase;
    width: 100%;
  }
  @media (min-width: 600px) {
    .btn {
      margin: 0 1em 2em;
    }
  }
  .btn:hover {
    text-decoration: none;
  }
  .btn-2 {
    letter-spacing: 0;
  }
  
  .btn-2:hover,
  .btn-2:active {
    letter-spacing: 5px;
  }
  
  .btn-2:after,
  .btn-2:before {
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    border: 1px solid rgba(255, 255, 255, 0);
    bottom: 0px;
    content: " ";
    display: block;
    margin: 0 auto;
    position: relative;
    -webkit-transition: all 280ms ease-in-out;
    transition: all 280ms ease-in-out;
    width: 0;
  }
  
  .btn-2:hover:after,
  .btn-2:hover:before {
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    border-color: white;
    -webkit-transition: width 350ms ease-in-out;
    transition: width 350ms ease-in-out;
    width: 70%;
  }
  
  .btn-2:hover:before {
    bottom: auto;
    top: 0;
    width: 70%;
  }