body {
    margin: 0;
    font-family: 'Raleway', sans-serif;
    background-color: #fdfdfd;
  }
  
  .menu-section img {
    display: block;
    width: 100%;
    height: auto;
  }

  @media screen and (min-width: 1024px) {
    .menu-section img {
      max-width: 60%; /* Adjust this value as needed */
      height: auto;
      display: block;
      margin: 0 auto; /* centers the image */
    }}
  
  .blurb-section {
    padding: 2rem 1rem;
    background-color: #fff4e6;
    text-align: center;
  }
  
  .blurb-section h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  
  .blurb-section p {
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
  }
   
  
  
  @media (min-width: 1024px) {
    .blurb-section {
      padding: 4rem 2rem;
    }
  
    .blurb-section h2 {
      font-size: 2rem;
    }
  
    .blurb-section p {
      font-size: 1.2rem;
    }
  }