/* 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');
*{box-sizing: border-box}
body {
  background-color: white;
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  margin: 1;
  color: #444;
  text-align: center;

}

h1 {
  font-family: "Merriweather", serif;
  font-size: 32px;
}
#wrapper {
  font-size: 0px
}
#whiterectangle{
  display: inline-block;
  background-color: rgb(249,223,189);
  width: 180px;
  height: 300px;
  padding-top: 100px;
  padding-left:80px;

}

#greenrectangle{
  display: inline-block;
  background-color: rgb(61,136,38);
  width: 180px;
  height: 300px;
  padding-top: 100px;
  padding-right: 80px;
}

#whitebox{
  display: inline-block;
  background-color: rgb(249,223,189);
  width: 100px;
  height:90px;
  padding-top: 40px;
  padding-left: 70px;
}
#greenbox{
  display: inline-block;
  background-color: rgb(61,136,38);
  width: 100px;
  height:90px;
  padding-top: 40px;
  padding-left: 0px;
}