/* =========================================================
  reset.css
  - utility-first friendly
  - rem = 16px fixed
  - safe for production
========================================================= */

/* =========================================================
  Base
========================================================= */

html{
  font-size:16px; /* 1rem = 16px */
  -webkit-text-size-adjust:100%;
  text-size-adjust:100%;
  scroll-behavior:smooth;
}

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

/* =========================================================
  Remove default margin
========================================================= */

html, body,
h1,h2,h3,h4,h5,h6,
p,blockquote,pre,
dl,dd,
ol,ul,
figure,
fieldset,legend{
  margin:0;
}

/* =========================================================
  Body
========================================================= */

body{
  line-height:1.5;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

/* =========================================================
  Media
========================================================= */

img,
picture,
video,
canvas,
svg{
  display:block;
  max-width:100%;
  height:auto;
}

/* =========================================================
  Form
========================================================= */

input,
button,
textarea,
select{
  font:inherit;
  color:inherit;
}

button{
  background:transparent;
  border:0;
  padding:0;
  cursor:pointer;
}

textarea{
  resize:vertical;
}

/* remove fieldset bug */
fieldset{
  min-width:0;
  padding:0;
  border:0;
}

/* =========================================================
  List
========================================================= */

ol, ul{
  padding:0;
  list-style:none;
}

/* =========================================================
  Link
========================================================= */

a{
  color:inherit;
  text-decoration:none;
}

/* =========================================================
  Table
========================================================= */

table{
  border-collapse:collapse;
  border-spacing:0;
}

/* =========================================================
  Typography safety
========================================================= */

p, h1, h2, h3, h4, h5, h6{
  overflow-wrap:break-word;
}

/* long word / url safety */
:where(p, a, li, td, th){
  word-break:break-word;
}

/* =========================================================
  hr
========================================================= */

hr{
  border:0;
  border-top:1px solid #000000;
  height:0;
}

/* =========================================================
  interactive
========================================================= */

summary{
  cursor:pointer;
}

/* =========================================================
  focus (accessible)
========================================================= */

:focus-visible{
  outline:2px solid #000000;
  outline-offset:2px;
}

/* =========================================================
  reduced motion
========================================================= */

@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto;}
  *,
  *::before,
  *::after{
    animation-duration:0.01ms !important;
    animation-iteration-count:1 !important;
    transition-duration:0.01ms !important;
    scroll-behavior:auto !important;
  }
}