/* Modern reset / base.css */

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

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body,h1,h2,h3,h4,h5,h6,p,figure,blockquote,dl,dd {
  margin: 0;
}

body {
  min-height: 100vh;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

h1,h2,h3,h4,h5,h6,button,input,label {
  line-height: 1.2;
}

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

p,li,figcaption {
  overflow-wrap: break-word;
}

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

a:hover {
  opacity: 0.8;
}

a:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}


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

li {
  margin: 0;
  padding: 0;
}

img,picture {
  max-width: 100%;
  display: block;
}

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

textarea:not([rows]) {
  min-height: 10em;
}

:target {
  scroll-margin-block: 5rem;
}

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

[hidden] {
  display: none !important;
}