     body {
      background-color: #ffffff;
      color: #400808;
      font-family: "Roboto", Helvetica, sans-serif;
      margin: 0;
    }
        .reading-room h3
    {
       color: #400808;
       font-family:'Cinzel Decorative', cursive;
    }  
    .reading-room h6
    {
       color: #400808;
       font-family:'Cinzel Decorative', cursive;
    } 
    .header {
      padding: 30px;
      text-align: center;
    }    /* Reading Room logo */
    .rr-logo {
      max-width: 100px;
      height: auto;
      display: block;
      margin: 0 auto 20px auto;
    }

    .rr-logo {
        max-width: 180px;
      }
    
    .rr-image{
    max-width: 800px;
    height: auto;
    display: block;
    margin: 0 auto 20px auto;
    }
    /*return to index*/
    .home-link {
      color: #691319;
      text-decoration: none;
      font-size: 0.95rem;
    }
    .home-link:hover {
      text-decoration: underline;
    }
 
     .center-container {
        display: flex;
        justify-content: center; /* Centers content horizontally */
        align-items: center;     /* Centers content vertically */
    }
    
    /*Return to top Button*/
    #myBtn {
      display: none;
      position: fixed;
      bottom: 20px;
      right: 30px;
      z-index: 99;
      font-size: 18px;
      border: none;
      outline: none;
      background-color: red;
      color: white;
      cursor: pointer;
      padding: 15px;
      border-radius: 4px;
    }
    #backToRoom {
      position: fixed;
      bottom: 30px;
      left: 30px;   /* LEFT side so it doesn't compete with your Top button */
      z-index: 999;
      font-size: 18px;
      border: none;
      outline: none;
      background-color: #670a08;
      color: white;
      cursor: pointer;
      padding: 10px 14px;
      border-radius: 50%;
      opacity: 0.7;
      transition: 0.3s;
      text-decoration: none;
    }

    #backToRoom:hover {
      opacity: 1;
    }
    
/* ===== CELL PHONE ONLY ===== */
@media (max-width: 600px) {

  .row {
    display: block;
  }

  .col-md-4 {
    width: 100%;
    max-width: 100%;
    display: block;
    margin-bottom: 25px;
  }

  .container {
    padding-left: 10px;
    padding-right: 10px;
  }

  /* Images */
  img {
    max-width: 100%;
    height: auto;
  }

  /* Only override inline widths where needed */
  img[style*="width"] {
    max-width: 100% !important;
    height: auto;
  }

  .header {
    padding: 12px;
  }

  .rr-logo {
    max-width: 120px;
  }

  .rr-image {
    width: 100%;
    max-width: 100%;
  }

  button,
  .btn {
    width: 100%;
    margin-bottom: 8px;
  }

  h4 {
    font-size: 1.1rem;
    text-align: center;
  }
}