/* reset.css or base.css */

/* Box sizing reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove margin, padding, borders */
body, h1, h2, h3, h4, h5, h6, p, figure, blockquote, dl, dd {
  margin: 0 ; 
  padding: 0 ;
}

/* Remove default font styling */
h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
}

/* Remove default link styles */
a {
  color: inherit;
  text-decoration: none;
}

/* Set a base font family and smoothing */
body {
  font-family: system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  background-color: #fff;
  color: #000;
}

/* Reset list styles */
ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Reset form elements */
input, button, textarea, select {
  font: inherit;
  border: none;
  outline: none;
  background: none;
}
