@import url("/core/assets/vendor/normalize-css/normalize.css") layer(base);

@layer base {
  :root {
    font: var(--common);
    background-color: white;
    scrollbar-width: thin;
    scroll-behavior: smooth;
    scroll-snap-type: y proximity;
    -webkit-font-smoothing: antialiased;
  }

  img {
    max-width: 100%;
    height: auto;
  }

  video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 16/9;
  }

  hr {
    height: 1px;
    background: var(--dividers);
    border: none;
  }
}
