/* reset.css */

/* 1) Box sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* 2) Remove default spacing */
* {
  margin: 0;
  padding: 0;
}

/* 3) Base body */
html,
body {
  height: 100%;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* 4) Media defaults */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/* 5) Form defaults */
input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

/* 6) Typography overflow safety */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

/* 7) Remove list styles (optional but common) */
ul,
ol {
  list-style: none;
}

/* 8) Links */
a {
  color: inherit;
  text-decoration: none;
}

/* 9) Tables */
table {
  border-collapse: collapse;
  border-spacing: 0;
}