

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

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

body { 
  font: 18px/23px "Cantarell", sans-serif;
  color: #c01818;
}

h1 {
  color: #c01818;
  font-size: 25px;
  line-height: 25px;
  font-weight: 400;
  margin-top: 20px;
}

a {
  color: #c01818;
}

p {
  margin: 0 0 15px 0;
}

strong {
  font-weight: 700;
}
.container {
  display: table;
  padding-top: 80px;
  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: 80px 0 0 0;
  }
  
  #more-content {
    float: left;
    margin-right: 10px;
    
  }
  
  body h1 {
    font-size: 18px;
    line-height: 23px;
  } 
  
  html, body, .container {
    height: auto;
  }
}