/* General reset and font */
body {
  font-family: 'Georgia', serif;
  line-height: 1.6;
  margin: 0;
  padding: 20px;
  background-color: #fafafa;
  color: #333;
}



/* Headings */
h1, h2, h3 {
  font-weight: normal;
  text-align: center;
}

/* Sections */
section {
  max-width: 800px;
  margin: 0 auto 3rem auto;
  padding: 1rem;
}

/* Art & Drawing Pieces */
.art-piece, .drawing-piece {
  margin-bottom: 2rem;
}

.art-piece img,
.drawing-piece img {
  width: 100%;
  max-width: 100%;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* Poems */
.poem {
  background-color: #fff;
  padding: 1rem;
  border-left: 4px solid #999;
  margin-bottom: 2rem;
}

/* Footer */
footer {
  text-align: center;
  font-size: 0.9rem;
  color: #666;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid #ddd;
}

