App.css 529 Bytes
.main {
 background-color: aliceblue;
 margin:10px; 

}

.container >div {
  padding:10px;
  text-align: center;
  font-size: 2em;
  color: rgb(245, 241, 236);
  display: grid;
  grid-template-areas: 
  "one two three"
  "four five "
  ;
  
}
.one {

  background-color: brown;
}`
.two {

  background-color: rgb(63, 228, 74);
}
.three {

  background-color: rgb(198, 89, 89);
}
.four {

  background-color: rgb(204, 50, 204);
}
.five {`

  background-color: rgb(240, 8, 155);
}
.six {
 
  background-color: rgb(91, 53, 217);
}