/* responsive.css *//* -----------------------------------------
   RESPONSIVE DESIGN
------------------------------------------*/

@media (min-width: 600px) {
    .button-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero h1 {
        font-size: 3rem;
    }
}

@media (min-width: 900px) {
    .button-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .content-section {
        padding: 30px;
    }
}
/* MOBILE FIX — force layout to fit screen */
@media (max-width: 768px) {
  body {
    overflow-x: auto;
  }
}


  .button-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .big-button {
    width: 90%;
    max-width: 420px;
    box-sizing: border-box;
  }



