/* 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: white;
  height: 390px;
  width: 540px;
  left: 100px;
}
#blackbox{
  position: absolute;
  top: 0px;
  left:0px;
  width: 180px;
  height: 130px;
  max-width: 180px;
  background-color: rgba(0,0,0,1);
}
#bluebox{
  position: absolute;
  top: 0px;
  left:180px;
  width: 180px;
  max-width: 180px;
  background-color: rgba(60,90,220,0.8);
  height: 130px;
}
#yellowbox{
  position: absolute;
  top: 0px;
  right:0px;
  width: 180px;
  max-width: 180px;
  background-color: rgba(237,223,113,0.9);
  height: 130px;
}
#whitebox{
  position: absolute;
  bottom: 130px;
  left:0px;
  width: 180px;
  max-width: 233px;
  background-color: rgba(223,255,255,0.7);
  height: 130px;
}
#navybox{
  position: absolute;
  bottom: 130px;
  left:180px;
  width: 180px;
  max-width: 233px;
  background-color: rgba(27,55,85,1);
  height: 130px;
}
#redbox{
  position: absolute;
  bottom: 130px;
  right:0px;
  width: 180px;
  max-width: 233px;
  background-color: rgba(160,49,75,1);
  height: 130px;
}
#graybox{
  position: absolute;
  top: 260px;
  left:0px;
  width: 180px;
  max-width: 233px;
  background-color: rgba(0,0,0,0.8);
  height: 130px;
}
#darkbluebox{
  position: absolute;
  top: 260px;
  left:180px;
  width: 180px;
  max-width: 233px;
  background-color: rgba(39,42,135,.9);
  height: 130px;
}
#lightbluebox{
  position: absolute;
  top: 260px;
  right: 0px;
  width: 180px;
  max-width: 233px;
  background-color: rgba(89,166,225,.9);
  height: 130px;
}


