/* base.css */
/* 1. Reset default styles */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* 2. Set core body defaults */
html, body {
  height: 100%;
  width: 100%;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  background-color: #fff;
  color: #111;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* 3. Remove default list styles */
ul, ol {
  list-style: none;
}

/* 4. Anchor defaults */
a {
  text-decoration: none;
  color: inherit;
}

/* 5. Media defaults */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* 6. Form elements inherit font */
input, button, textarea, select {
  font: inherit;
}

/* 7. Buttons basic reset */
button {
  background: none;
  border: none;
  cursor: pointer;
}

/* 8. Remove all animations and transitions for people who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}