@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:350px;
  margin: 0 auto;
  background-color:snow;
  height:310px;
}
#box1{
  Position: absolute;
  right:170px;
  top:120px;
  background-color: green;
  width:111px;
  height:60px;
}
#box3{
  Position: absolute;
  right:60px;
  top:120px;
  background-color: snow;
  width:115px;
  height:60px;
}
#box2{
  Position: absolute;
  right:0px;
  top:0px;
  background-color:green;
  width:175px;
  height:310px;
}