/* 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: white;
  font-family: "Open Sans", sans-serif;
  padding: 15px 25px;
  font-size: 12px;
  margin: auto;
  color: #444;
}

h1 {
  font-family: "Merriweather", serif;
  font-size: 32px;
}
h4 {
  font-size: 16px;
}


#wrapper{
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 960px){
  h4{
    font-size: 24px;
  }
  p{
    font-size: 16px;
    margin-top: 45px;
  }
  section{
    background-color: whitesmoke;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0 25px;
    align-items: center;
  }
}