/* 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;

}
#wrapper{
  position: relative;
  width: 100%;
  max-width: 100%;
  background-color: pink;
  height: 400px;
  width: 500px;
  left: 200px;
}
#redbox{
    position: absolute;
    top: 0px;
    left:0px;
    width: 123px;
    max-width: 233px;
    background-color: rgba(255,0,0,0.8);
    height: 123px;
}
#bluebox{
  position: absolute;
  top: 0px;
  right:0px;
  width: 190px;
  max-width: 233px;
  background-color: rgba(0,0,255,0.8);
  height: 123px;
}
#greenbox{
  position: absolute;
  bottom: 0px;
  left:0px;
  width: 190px;
  max-width: 233px;
  background-color: rgba(0,105,0,0.7);
  height: 123px;
}
#yellowbox{
  position: absolute;
  bottom: 0px;
  right:0px;
  width: 123px;
  max-width: 233px;
  background-color: rgba(223,255,0,0.7);
  height: 123px;
}


