figure{ 



  width:80vmin;
  margin:0 auto;
  height: 80vmin;
  display: grid;
  grid-template-columns: 4fr 2fr 2fr 2fr 2fr 4fr 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(45,110,110);
}

figure div:nth-child(6) { 
background-color: rgb(204,50,68);
}


