/*
|–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––
| webeditor — reset
|–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––
| nanobase's 02-reset.css, verbatim. Applies to the whole tool and, by
| extension, to the page being authored on the canvas — so what you build sees
| the same baseline a real nanobase page does.
*/

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

* {
    margin: 0;
    padding: 0;
}

html {
    overflow-y: scroll;
    -webkit-text-size-adjust: 100%;
            text-size-adjust: 100%;
}

body {
    min-height: 100vh;
    line-height: var(--line-height-base);
    -webkit-font-smoothing: antialiased;
}

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

input,
button,
textarea,
select {
    font: inherit;
    color: inherit;
}

label {
    user-select: none;
    -webkit-user-select: none;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word;
}

button {
    background: none;
    border: 0;
    cursor: pointer;
}

ul,
ol {
    list-style: none;
}
