@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;
  font-size: 18px;
  margin: 2px;
  color: #444;
  text-align: center;
}
#wrapper{
  position: relative;
  width:100%;
  max-width:300px;
  height:200px;
  background-color: rgb(188,117,124);
}
#redbox{
  position:absolute;
  top:0;
  left:0;
  width:58px;
  height:60px;
  background-color: rgb(134,31,15);
}
#bluebox{
  position:absolute;
  top:0;
  right:0;
  width:110px;
  height:60px;
  background-color: rgb(34,84,141);
}
#greenbox{
  position:absolute;
  bottom:0;
  left:0;
  width:110px;
  height:60px;
  background-color: rgb(9,85,30)
}
#yellowbox{
  position:absolute;
  bottom:0;
  right:0;
  width:58px;
  height:60px;
  background-color:rgb(157,166,46);
}