

/* Center everything */
#reader {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#header {
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 0px;
    text-justify: center;
    size: 2px;
    color: #f4ffff;
    text-shadow:
    -1px -1px 0 #401c74,
     1px -1px 0 #401c74,
    -1px  1px 0 #401c74,
     1px  1px 0 #401c74;
}

body {
  background-image: url("/assets/darksky.gif"); /* new background */
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
  font-family: 'Mac Garamond', sans-serif;
}

/* The fixed-size poem box */
#reader-box {
  width: 500px;        /* fixed width */
  height: 550px;       /* fixed height */
  border: 2px solid hsl(10, 73%, 23%);
  background-color: #f4ffff; /*previously :f8dbb1, maybe go back*/
  padding: 20px;
  overflow-y: auto;   
  box-sizing: border-box;
}

/* Title inside box */
#entry-title {
  margin-top: 0;
  text-align: center;
}

/* Text formatting */
#entry-content p {
  white-space: pre-wrap;
  line-height: 1.5;
  margin: 0 0 1em 0;
}

/* Images scale but dont resize */
#entry-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 15px auto;
}

#controls {
  margin-top: 10px;
  display: flex;
  gap: 10px;
  justify-content: center;
}

#poem-list {
  margin-top: 10px;
  width: 400px;
  border: 2px dotted #671f10;
  background-color: #f4ffff;
  padding: 5px;
  display: none;
}

/* FOOTER */
#footer {
  clear: both;
  padding: 3px;
  border-top: 1px solid #401c74;
  background-image: linear-gradient(to right, #401c74, #4c0043);
  color: #fff;
  font-size: 14px;
}

#footer p {
  margin: 0px;
}

