body {
  background-color: #f9f9f9;
  font-family: 'Georgia', serif;
  text-align: center;
  padding: 50px;
  color: #333;
}

h1 {
  font-size: 3em;
  margin-bottom: 40px;
  letter-spacing: 1px;
}

.poem-thumbnail {
  display: inline-block;
  margin: 20px;
  text-decoration: none;
  color: #333;
}

.poem-thumbnail img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Title under the thumbnail — now bold, larger, and with a soft glow */
.poem-thumbnail p {
  margin-top: 10px;
  font-size: 1.4em;
  font-weight: bold;
  color: #2b2b2b;
  letter-spacing: 1px;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

/* Main poem text styling */
p {
  font-size: 1.5em;
  line-height: 2em;
  margin: 20px 0;
}

/* Back to Poems button */
.back-link {
  display: inline-block;
  margin-top: 40px;
  font-size: 1.2em;
  text-decoration: none;
  color: #555;
  border-bottom: 1px dashed #555;
  background: rgba(255, 255, 255, 0.6);
  padding: 10px 20px;
  border-radius: 5px;
}

/* Optional: Glow effect on hover over thumbnail */
.poem-thumbnail:hover p {
  color: #5a3e14;
  text-shadow: 2px 2px 5px rgba(255, 255, 200, 0.9);
}


