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

body {
  background-color: white;
  font-family: "Open Sans", sans-serif;
  padding: 5px 25px;
  font-size: 18px;
  margin: 0 auto;
  color: #444;
}

h1 {
  font-family: "Merriweather", serif;
  font-size: 32px;
}

figure {

  width: 80vmin;
  height: 80vmin;
  display:grid;

  grid-template-columns: 4fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;

}

figure div:nth-child(1){
  background-color: crimson;
}

figure div:nth-child(2){
  background-color: cornflowerblue;
}

figure div:nth-child(3){
  background-color: lightcoral;
}

figure div:nth-child(4){
  background-color: rgb(80,43,80);
}

figure div:nth-child(5){
  background-color: rgb(0,113,111);
}

figure div:nth-child(6){
  background-color: rgb(180,64,79);
}

figure div:nth-child(7){
  background-color: rgb(118,100,180);
}

