/* Fonts from Google Fonts - more at https://fonts.google.com */
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,700');
@import url('https://fonts.googleapis.com/css?family=Merriweather:400,700');

body {
  background-color: #f0f0f0;
  background-size: 100%;
  font-family: "Open Sans", sans-serif;
  padding: 5px 25px;
  font-size: 16px;
  color: #000;
}
#background {
  width: 100%; 
  height: 100%;
  object-fit: contain;
  position: relative; 
  left: 0px; 
  top: 0px; 
  z-index: -999; 
}
#wrapper { 
  background-color: #DDDDDD;
  object-fit: contain;
  margin: 0 auto;
  max-width: 600px;
  padding: 10px 45px;
  width: 100%;
  height: 100%;
}
h1{
  font-family: "Merriweather";
  font-size: 50px;
  color: #000;
  width="100%" height="100%"
  margin: 0 auto;
}
h3 {
  font-family: "Merriweather", serif;
  font-size: 24px;
  color: #000;
}
hr {
  display: block;
  height: 2px;
  border: 0;
  border-top: 3px solid #000;
  margin: 1em 0;
  padding: 0; 
}
/* For mobile phones: */
[class*="col-"] {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  /* For desktop: */
  .col-1 {width: 8.33%;}
  .col-2 {width: 16.66%;}
  .col-3 {width: 25%;}
  .col-4 {width: 33.33%;}
  .col-5 {width: 41.66%;}
  .col-6 {width: 50%;}
  .col-7 {width: 58.33%;}
  .col-8 {width: 66.66%;}
  .col-9 {width: 75%;}
  .col-10 {width: 83.33%;}
  .col-11 {width: 91.66%;}
  .col-12 {width: 100%;}
}

