/* page.css */

/* General page styles */
body {
  margin: 0;
  padding: 0;
  background-color: #f6f2eb; /* warm paper tone */
  color: #2f2a26;            /* soft dark brown */
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.7;
}

/* Main page container */
.page {
  max-width: 700px;
  margin: 0 auto;
  padding: 2.75rem 1.5rem 3.5rem; /* top, sides, bottom */
}

/* Story paragraphs */
p {
  margin-bottom: 1.4rem;  /* spacing between paragraphs */
  font-size: 1.05rem;
}

/* Story image styling */
.story-image {
  display: block;
  margin: 1.5rem 0;      /* vertical spacing only */
  width: 100%;           /* aligns left and right with text */
  height: auto;          /* keeps aspect ratio */
  border-radius: 8px;    /* soft corners for cozy feel */
  box-shadow: 0 2px 6px rgba(0,0,0,0.1); /* subtle shadow for depth */
}

/* Responsive adjustments */
@media (max-width: 480px) {
  .page {
    padding: 2.25rem 1.25rem 3rem; /* smaller padding for mobile */
  }
}




