/** based on Andy Bell: https://andy-bell.co.uk/a-more-modern-css-reset/?ck_subscriber_id=1613199060 **/
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}
body, h1, h2, h3, h4, p,
figure, blockquote, dl, dd {
  margin: 0;
  padding: 0;
}
body {
  min-height: 100vh;
  line-height: 1.5em;
}
h1, h2, h3, h4,
button, input, label {
  line-height: 1.1;
  font-size: 100%;
	font: inherit;
}
h1, h2,
h3, h4 {
  text-wrap: balance;
}
img,
picture {
  max-width: 100%;
}
:target {
  scroll-margin-block: 5ex;
}

/** custom: tobija.ch **/
* {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
a {
  color: inherit;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}