  body {
            font-family: Arial, sans-serif;
      line-height: 1.4;
      margin: 5px 0 0 0 ;
      padding: 0.2em 1.5em;
      background-color: #f4f4f4;
      font-size: 15px;
        }

        h1 {
            color: #333;
        }

         h3 {
            color: #666;
            text-align: center;
            padding: 0 ;  
            margin: auto;
        }
        #wwrap {
            max-width: 900px;
            margin: auto;
            background:transparent    ;  
            display: flex;
            flex-direction: column;
            align-items: flex-start;
       

        }
        #mainContent {
            width: 100%;
            background-color:white;
            min-height: 400px;
        }
       header {
      /* width: 100%; */
      background-color: aliceblue;

      border: 1px solid navy;
      border-radius: 6px 6px 0 0;
      width: 100% ;
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      align-items: baseline;
    }
    #story {
      padding: 8px 10px
    }
    .photo {
      width: 100%;
      /* Adjust the width as needed */
      max-width: 350px;
      /* Maximum width for computers */
      padding:9px 19px;
      box-sizing: border-box;
    }

    /* Styles for iPads */
    @media (max-width: 924px) {
      .photo {
        max-width: 250px;
        /* Maximum width for iPads */
      }
    }

    /* Styles for iPhones and smaller devices */
    @media (max-width: 767px) {
      .photo {
        max-width: 200px;
        /* Maximum width for iPhones and smaller devices */
      }
    }
