﻿body {
  font-family: 'Georgia', serif;
    color: #2d2d2d;
  color: #333;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

.poemcontainer {
  max-width: 800px;
  margin: auto;
  padding: 30px 20px;
}

h1 {
  text-align: center;
  font-size: 2.5em;
  margin-bottom: 10px;
    color:#5b3a8e;
}

.intro {
  font-size: 1.2em;
  text-align: center;
/*  margin-bottom: 40px; */
  color:#48038b;
}

.section-title {
  font-size: 1.8em;
  color: #5b3a8e;
  margin-top: 50px;
  margin-bottom: 20px;
  border-bottom: 2px solid #ddd;
  padding-bottom: 5px;
}

/* Accordion styles */
.accordion {
  margin-bottom: 20px;
}

.accordion-btn {
  background-color: #fff6f0;
  color: #5b3a8e;
  cursor: pointer;
  padding: 18px 20px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 1.1em;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: background 0.3s ease;
}

.accordion-btn:hover {
  background-color: #fbeee7;
}

.accordion-content {
  background-color: #fff6f0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  border-radius: 8px;
  padding: 0 20px;
  margin-top: 5px;
}

.accordion-content p {
  margin: 15px 0;
  white-space: pre-line;
  font-size:1.2em;
}

.accordion.active + .accordion-content {
  max-height: 1000px; /* adjust as needed */
  padding: 15px 20px;
}

.copyright {
  font-size: 0.8em;
  color: #999;
  text-align: right;
  margin-top: 10px;
}

@media (max-width: 600px) {
/*  .container {
    padding: 20px 10px;
*/
  }

  h1 {
    font-size: 2em;
  }

  .section-title {
    font-size: 1.5em;
  }
}