figure{
  display: grid;
  grid-template-columns: 4fr 1fr 1fr 1fr 1fr 1fr 1fr;
  width: 70vmin;
  height: 70vmin;
  margin: 0 auto;
}
figure div:nth-child(1){
  background-color: crimson;
}
figure div:nth-child(2){
  background-color: rgb(142,138,185);
}
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,116,115);
}
figure div:nth-child(6){
  background-color: rgb(186,60,70);
}
figure div:nth-child(7){
  background-color: rgb(118,102,175);
}