

body {
  margin: 20px;
  height: 97vh;
  font-size: 1.4em;
  /* border: 1px solid aqua; */
}

h1 {
    border: 1px solid white;
    box-shadow: 0px 0px 8px 1px white inset;
    margin-bottom: 0px;
    font-size: 3.3vh;

}

p {
   margin: 0;
   padding: 0;
   font-size: 1.5em;
}

a {
    color: white;
    transition: transform 240ms ease;
    text-decoration: none;
   }

   

  a:hover {
      color: red;
      transform: scale(1.03);

    }


  a:visited {
      color: white;
    }



    #main {
      position: relative;
  }

    #title- {
        
        border: 1px solid white;
    }

    #home {
        position:absolute;
        top: -4.7vh;
        left: 12.6vw;
        font-size:1.4em;
        /* border: 1px solid orange; */
    }


    .zoom { transition: transform 1.4s; }
    .zoom:hover { transform: scale(1.06); } 





@media (max-width: 600px) {

  /* Base */
  html, body {
    margin: 0;
    padding: 0;
  }

  body {
    font-size: 1rem;
    background: #000;
    color: #fff;
  }

  /* Root main becomes a vertical layout */
 #main {
    position: static;
    padding: 18px 14px 28px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
    min-height: 100vh;
  }

  /* NAV: put home at top-right, keep it out of the way */
  nav {
    position: sticky;
    top: 0;
    z-index: 10;
    padding: 8px 0;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(6px);
  }


  /* Disable hover zoom on touch devices */
  .zoom,
  .zoom-1-1 {
    transition: none !important;
    scale: 1 !important;
  }
}




@media print {

  /* Tell browser what we want */
  @page {
    size: Letter;
    margin: 0.5in; /* safe margin for most printers */
  }

  /* Remove browser page styling quirks */
  html, body {
    background: #fff !important;
  }

  /* Hide nav/hamburger (printing doesn't need it) */
  .no-print,
  nav,
  .hamburger {
    display: none !important;
  }

  /* Make colors/black backgrounds actually print */
  * {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  
  

  
  /* Print layout: a clean flyer structure */
  .print-flow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto 1fr auto;
    gap: 0.25in 0.25in;
    align-items: start;
  }

  /* Title across the top */
  
  h1 {
    font-size: 18pt !important;
    margin: 0 0 8pt 0 !important;
    border: 2pt solid #000 !important;
    box-shadow: none !important;
    background: #fff !important;
    color: #000 !important;
    padding: 8pt 10pt !important;
  }

  /* Body text: readable */
  p {
    font-size: 12pt !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.25;
    color: #000 !important;
  }

  /* Kill hover zoom in print */
  .zoom,
  .zoom-1-1 {
    transition: none !important;
    transform: none !important;
    scale: 1 !important;
  }

  /* Optional: avoid splitting blocks across pages */
  .categories {
    break-inside: avoid;
    page-break-inside: avoid;
  }
}





