body {
  text-align: center;
}

.poem {
  display:grid;
  grid-template-columns: 1fr 2fr 1fr;
  min-height: 100vh;
}
h2 {
  font-weight:300;
}
h3 {
  font-weight:200;
}
p {
  font-size:20px;
}
#content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: url('poembg.jpg');
    background-size:cover; /* Adjust the background size to cover the entire div */
    background-position: center; /* Center the background image */
}
.leftside {
  background-color: #F6FFB0;
}
.rightside {
  background-color: #F6FFB0;
}
@media only screen and (max-width: 1600px) {
  .poem {
    display:grid;
    grid-template-columns: 1fr;
    min-height: 100vh;
  }
  .leftside {
    display:none;
  }
  .rightside {
    display:none;
  }
}
