
@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: 2px;
  color: #444;
  text-align: center;
}

#wrapper{
  position: relative;
  width:100%;
  max-width:310px;
  margin:0 auto;
  background-color: rgb(178, 125, 130);
  height: 240px;
}

#bluebox{
  position: absolute;
  right: 0px;
  top: 0px;
  background-color: rgb(46, 92, 143);
  width: 111px;  
  height: 60px;
}
#yellowbox{
  position: absolute;
  right: 0px;
  top: 180px;
  background-color: rgb(163,179,53);
  width: 61px;  
  height: 60px;
}
#redbox{
  position: absolute;
  left: 0px;
  top: 0px;
  background-color: rgb(126,39,17);
  width: 61px;  
  height: 60px;
}
#greenbox{
  position: absolute;
  left: 0px;
  bottom: 0px;
  background-color: rgb(39,90,43);
  width: 111px;  
  height: 60px;
}

  