html {
    scrollbar-gutter: stable;
}
body{
    font-family: monospace;
    font-size: 1rem;
    line-height: 1.5;
    background-color: #cff2f0;
    color: #9d1081;
}
ul {
    list-style: square;
   // padding-inline-start: 1.5em;
}
li {
    margin-block: 0.5em;
}
li::marker {
    color: #cc14a7;
}
a {
    color: #5b109d;
    text-decoration-style: dotted;
    text-decoration-thickness: 1px;
    text-underline-position: under;
    text-underline-offset: 2px;
    &:visited {
        color: #cc14a7ff;
    }
    &:focus-visible {
        text-decoration: none;
        outline-color: inherit;
    }
    &[aria-current] {
        font-weight: 700;
    }
}
*:focus-visible {
    outline: 2px dashed #9d1081;
    outline-offset: 2px;
}
*::selection {
    color: #cff2f0;
    background-color: #cc14a7ff;
}
main {
    max-width: 45rem;
}
img {
    height: auto;
    max-width: 100%
}