// ----------------------------------------------------------
// FS UI STYLES
// Reset
// ----------------------------------------------------------

@use "sass:meta";

@layer base {
  @include meta.load-css("~modern-normalize/modern-normalize");

  // Reset default styles
  body {
    padding: 0;
    margin: 0;
  }

  // Remove all of the default margins
  blockquote,
  dl,
  dd,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  hr,
  figure,
  p,
  pre {
    margin: 0;
  }

  // Remove heading elements default style
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-size: inherit;
    font-weight: inherit;
  }

  // Remove list elements default style
  ol,
  ul {
    padding: 0;
    margin: 0;
    list-style: none;
  }

  button {
    background-color: transparent;
    border: 0;
    outline: none;
    box-shadow: none;
  }

  html {
    font-size: 100%;
  }
}
