@import "https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;600;700;800&display=swap";

/* src/styles.scss */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
body {
  font-family: "Noto Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  user-select: none;
  -webkit-user-select: none;
  overscroll-behavior: none;
  -webkit-tap-highlight-color: transparent;
}
button,
input,
select,
textarea {
  font-size: 16px;
}
button {
  font-family: "Noto Sans", sans-serif;
  border: none;
  outline: none;
  background: none;
  padding: 0;
}
button:focus-visible {
  outline: 3px solid #667eea;
  outline-offset: 2px;
}
* {
  scroll-behavior: smooth;
}
.touchable {
  touch-action: manipulation;
}
@viewport {
  width: device-width;
  zoom: 1;
}
@media (max-width: 768px) {
  body {
    position: fixed;
    width: 100%;
    height: 100%;
  }
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  body {
    -webkit-font-smoothing: subpixel-antialiased;
  }
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
