 
 
 .no-scroll {
  position: absolute;
  overflow: hidden;
  height: 100%;
}

 
 
 
 /* Reset default margins */
 body, html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: 'Paytone One', sans-serif; /* Set the main font */
    background-color: #fff; /* Optional: Background color */
  }





  /* Class to disable scrolling */
.no-scroll {
  overflow: hidden;  /* Prevents scrolling */
  height: 100%;      /* Prevents body height adjustment */
}



html {
  scroll-behavior: smooth;
}