/*
 * base.css
 *
 * spolem.net
 * copyright Jake Laack
 * ekaj@spolem.net
 */

:root {
  margin: 0;
  padding: 0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: inherit;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
    scroll-padding-top: 3rem;
  }
}

body {
  min-height: 100dvh;
}

h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
}

p {
  margin-bottom: 0.5rem;
}

/*
img, picture, svg, video {
  display: block;
  max-width: 100%;
}
*/

a { 
  text-decoration: none; 
  font-size: inherit;
}
a:hover {
  text-decoration: underline;
  text-decoration-thickness: 1pt;
  text-underline-offset: 2pt;
}

a img {
  border: none;
}

th {
  text-align: left;
  vertical-align: top;
}

td {
  vertical-align: top;
}
