html {
  font-family: Lato, sans-serif;
  font-size: 16px;
  height: 100%;
  width: 100%;
}

html, body {
  height: 100%;
  width: 100%;
  background: #fff;
}

#wrapper {
  min-height: 100%;
  position: relative;
  box-sizing: border-box;
}

#contentwrapper {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  padding: 1rem 1rem 7rem;
  box-sizing: border-box;
}

header {
  width: 100%;
  text-align: center;
}

header img.desktop {
  width: 100%;
  height: auto;
  display: none;
}

header img.mobile {
  max-width: 70px;
  height: auto;
}

h1,h2 {
  text-transform: uppercase;
  color: #9c1929;
}

p {
  font-weight: 300;
}

hr {
  width: 90%;
  margin: 2rem auto;
}

a:link {
  color: #9c1929;
  text-decoration: none;
}
a:hover {
  color: #444;
}

#content p {
  line-height: 1.5rem;
  text-align: justify;
}

#contact p {
  margin: .5rem 0;
}

footer {
  position: absolute;
  bottom: 0;
  box-sizing: border-box;
  width: 100%;
  padding: .1rem 1rem;
  background: #444;
  text-shadow: 1px 1px 0 #000;
  color: #fff;
  text-align: center;
}

@media only screen and (min-width: 600px) {
  
  header img.desktop {
    display: initial;
  }

  header img.mobile {
    display: none;
  }
}