body {font-size: medium; font-family: Arial, Helvetica, sans-serif;}
.item1 { grid-area: header; }
.item2 { grid-area: music; }
.item3 { grid-area: parrot; }
.item4 { grid-area: topten;}
.item5 { grid-area: stone; }
.item6 { grid-area: bobross;}
.item7 { grid-area: logo;}
.item8 { grid-area: poem;}
.item9 { grid-area: carl;}

.grid-container {
    width: 100%;
  display: grid;
  grid-template-areas:
    'header header header'
    'music parrot bobross'
    'topten stone stone '
    'topten poem poem'
    'topten poem poem'
    'logo poem poem'
    'logo poem poem'
    'carl carl carl';
  gap: 10px;
  background-color: #2196F3;
  padding: 10px;
  /* text-wrap: wrap; */
}

.grid-container > div {
  background-color: rgba(255, 255, 255, 0.8);
  text-align: center;
}
iframe {
  width: 300px;
  height: auto;
}
img {
    width: 300px;
    height: auto;
  }