/* Presentational style rules only
 * Not required
 */

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

/* Reset */
html, p, div, section {
  margin: 0;
  padding: 0;
  font: inherit;
}
body { 
  background-image: url(../img/frontpage-bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;  
  background-size: cover; 
  background-color: #CCC;
}

a {
  color: #ffffff;
}

p {
  margin: 0 0 15px 0;
}
a:link img{
border-color:#FFF;
border-style:solid;
border-width:1px;
cursor:hand;
}

/* Layout */

.container {
  display: table;
  width: 100%;
}

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

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


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

  .button, p {
    max-width: 150px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 20px;
  }

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