/* src/styles.scss */
*,
*::before,
*::after {
  box-sizing: border-box;
}
body {
  margin: 0;
}
input:focus,
textarea:focus {
  outline: none;
  border-color: #18b5a4;
  box-shadow: 0 0 0 3px rgba(24, 181, 164, 0.13);
}
::view-transition-old(root),
::view-transition-new(root) {
  animation-duration: 200ms;
}
html {
  scroll-behavior: smooth;
}
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

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