@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@font-face {
  font-family: "Stampa";
  src: url("../../fonts/STAMPA-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "LingkawiSouth";
  src: url("../../fonts/Lingkawi South.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  position: relative;
  overflow-x: hidden;
  scroll-behavior: smooth;
  font-family: "Inter", sans-serif;
  margin: auto;
  background-color: rgb(247, 248, 247);
}

.page {
  min-height: 80vh;
}

button {
  transition: 0.2s;
}
button:hover {
  filter: brightness(89%);
  transform: scale(1.01);
}
button:focus {
  filter: brightness(89%);
  transform: scale(0.95);
}

.page-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(242, 242, 242);
  opacity: 0;
  pointer-events: none;
  z-index: 9999; /* Ensure it's on top of other elements */
  transition: opacity 0.5s ease; /* You can adjust the transition duration */
}
.page-overlay.hide {
  background: none;
  pointer-events: none;
  opacity: 0;
}/*# sourceMappingURL=global.css.map */