@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  box-sizing: border-box;
}

html, body {
  position: relative;
  overflow-x: hidden;
  scroll-behavior: smooth;
  margin: auto;
}

.page {
  min-height: 80vh;
}

.interactive-btn {
  width: auto;
  padding: 4px;
  margin: -4px;
  border-radius: 4px;
  text-decoration: none !important;
  color: #1F1F1F !important;
  background: rgba(180, 196, 6, 0.1254901961);
  transition: 0.2s;
  cursor: pointer;
}
.interactive-btn:active, .interactive-btn:focus {
  text-decoration: none;
  background: rgba(180, 196, 6, 0.3568627451);
}
.interactive-btn:hover {
  text-decoration: none;
  background: rgba(180, 196, 6, 0.231372549);
}

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: white;
  opacity: 0;
  pointer-events: none;
  z-index: 100000000; /* Ensure it's on top of other elements */
  transition: opacity 0.5s ease; /* You can adjust the transition duration */
}
.page-overlay.hide {
  background: red;
  pointer-events: none;
  opacity: 1;
}/*# sourceMappingURL=global.css.map */