/* -- style -- */
    

*,
*::before,
*::after {
    box-sizing: border-box;
    box-decoration-break: clone;
}
* {
    margin: 0;
    padding: 0;
    font: inherit;
}
html {
    color-scheme: dark light;
    hanging-punctuation: first last;
}
body {
    min-height: 100svh;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1em;
}
img,
picture,
svg,
video {
    display: block;
    max-width: 100%;
}
a {
    text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    text-wrap: balance;
}
p,
li {
    max-width: var(--p-max-width, 65ch);
    text-wrap: pretty;
}
div {
    display: block;
    margin: auto;
    text-align: center;
    border: 3px solid;
    border-radius: 10px;
    margin: 10px;
}