html, body, .container {
  height: 100%;
}

/* Reset */
html, body, h1, p, a, div, section {
  margin: 0;
  padding: 0;
  font-size: 100%;
  font: inherit;
}

/* Basic */
body { 
  font: 18px/23px "PT Sans", sans-serif;
  color: #ffffff;
}

/* Layout */

.responsive {
    width: 80%;
    max-width: 1600px;
    height: auto;
}

.container {
  display: table;
  padding-top: 0px;
  width: 100%;
}

.content {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}

/* Special */
.sub-title {
  margin: 50px auto;
  font-size: 18px;
  line-height: 23px;
  text-transform: uppercase;
}


/* Media Queries */
@media only screen and (max-width: 340px) {
  
  .container {
    position: relative;
    display: block;
    float: left;
    vertical-align: baseline;
    margin: 0 auto;
    padding: 0px 0 0 0;
  }
  
  .content, blockquote {  
    display: inline;
    margin: 0 auto;
    padding-top: 0px;
    vertical-align: baseline;
  }

  blockquote {
    width: 150px;
    margin: 15px auto;
    font-size: 16px;
    line-height: 21px;
    background-color: transparent;
  }

  .sub-title {
    font-size: 14px;
    line-height: 21px;
  }

  html, body, .container {
    height: auto;
  }
}