/* Presentational style rules only
 * Not required
 */

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: 22px "Helvetica", sans-serif;
  line-height: 1.25em;
  color: #ffffff;
  letter-spacing: 2px;
}

h1 {
  color: #efecec;
  text-transform: uppercase;
  font-size: 40px;
  line-height: 50px;
  font-weight: 400;
  margin-top: 20px;
}

a {
  color: #2f3d66;
  text-decoration: none;
}

a:hover {
  color: #ffffff;
}

p {
  margin: 0 0 25px 0;
  font-family: 'Montserrat', sans-serif;
}

strong {
  font-weight: 700;
}

img {
  max-width: 80%;
}

/* Layout */


.container {
  margin-top: 150px;
  width: 100%;
}

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

.contacts {
  padding-top: 50px;
  max-width: 460px;
  margin: 0 auto;
}


/* Special */
.button {
  display: inline-block;
  padding: 6px 10px;
  color: #cafaea;
  border: 1px solid #cafaea;
  border-radius: 3px;
  font-weight: 700;
  line-height: normal;
  text-decoration: none;
  text-align: center;
  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;
  }
  
  
  body h1 {
    font-size: 18px;
    line-height: 23px;
  } 


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

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