html {
  margin: 0;
  padding: 0;
  -webkit-text-size-adjust: none;
}

body {
  margin: 0 auto;
  padding: 0 1rem;
  font-family: sans-serif;
  background: white;
  color: black;
  max-width: 72ch;
  line-height: 1.5rem;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: auto;
}

h1,
h2,
h3 {
  color: gray;
  margin-bottom: 1rem;
  margin-top: 1rem;
  font-weight: 300;
  line-height: 1.1;
}

h1 {
  margin-top: 4rem;
  font-size: 3rem;
}

h2 {
  margin-top: 3rem;
  font-size: 1.8rem;
}

h3 {
  margin-top: 2rem;
  font-size: 1.2rem;
}

ol,
blockquote {
  padding-left: 1rem;
  margin-left: 1rem;
  margin-right: 0;
  padding-right: 0;
}

blockquote {
  border-left: 1px solid gray;
}

pre {
  white-space: pre-wrap;

  padding: 1rem;
  line-height: 1.2;
  border: 1px solid lightgray;
  border-radius: 4px;
  font-family: monospace;
}


ol li {
  margin: 0.4rem 0;
}

ol li::marker {
  color: lightgray;
}

p {
  margin: 0.75rem 0;
}

main img,
main video,
main audio {
  display: block;
  margin: 1rem auto;
  max-width: 100%;
}

main video,
main audio {
  width: 100%;
}

main video {
  border: 1px solid lightgray;
  aspect-ratio: 16 / 9;
}

header .back-link {
  display: inline-flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
  gap: 0.5rem;
  line-height: 1;
}

footer {
  padding-top: 1rem;
  margin-top: 4rem;
  border-top: 1px dotted lightgray;
  text-align: center;
  font-size: 0.75rem;
  line-height: 1rem;
}

footer .lichen-plug {
  display: block;
  margin: 1rem auto;
  color: inherit;
  text-decoration: none;
}

footer p {
  margin: 0.2rem 0;
}

table {
  border: solid 1px gray;
  border-collapse: collapse;
  border-spacing: 0;
  font: normal 13px Arial, sans-serif;
}

thead th {
  background-color: orchid;
  border: solid 1px black;
  color: white;
  padding: 10px;
  text-align: left;
}

tbody td {
  border: solid 1px black;
  color: #333;
  padding: 10px;
  text-shadow: 1px 1px 1px #fff;
}

/* hej hernedefra sætter vi ind */

   html {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    overscroll-behavior: contain;
}

body {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    -webkit-text-size-adjust: 100%;
    touch-action: pan-x pan-y;
    overflow-x: auto;
    overflow-y: auto;
}

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

wobble-body.wobble {
    display: block;
    font-family: sans-serif;
    
    position: relative;
   
}

 @property --100vw {
    syntax: "<length>";
    initial-value: 0px;
    inherits: false;
}

.scalable-container {
    --100vw: 100vw;
    --px-width: calc(
    10000 * tan(atan2(var(--100vw), 10000px))
    );
    max-width: 700px;
    transform-origin: left top;
    transform: scale(min(calc(var(--px-width) / 700), 1));
    margin: auto;
}

.wobble > * {
    position: absolute;
    mix-blend-mode: inherit;
}

.wobble p {
    text-decoration: inherit;
}

.wobble a {
    text-decoration: inherit;
    display: inline-block;
    color: inherit;
}

.wobble a:hover {
    opacity: 0.8;
}

.wobble h1, h2, h3, h4, p,
figure, blockquote, dl, dd {
    margin-block-end: 0;
    margin-block-start: 0;
}