/* src/css/reset.css */
*,
*::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-block-end: 0;
}
ul[role=list],
ol[role=list] {
  list-style: none;
}
body {
  min-height: 100vh;
  line-height: 1.5;
}
h1,
h2,
h3,
h4,
button,
input,
label {
  line-height: 1.1;
}
h1,
h2,
h3,
h4 {
  text-wrap: balance;
}
a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}
img,
picture {
  max-width: 100%;
  display: block;
}
input,
button,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}
textarea:not([rows]) {
  min-height: 10em;
}
:target {
  scroll-margin-block: 5ex;
}

/* src/css/main.css */
:root {
  --color-foreground: lightgray;
  --color-background: #111;
  --color-border: #444;
  --border-width: 1px;
  --border-radius: 4px;
  --padding-small: 4px;
  --padding-medium: 8px;
  --padding-large: 16px;
  --margin-small: 4px;
  --margin-medium: 8px;
  --margin-large: 16px;
  --border-style: var(--border-width) dashed var(--color-border);
  --background-opacity-light: rgba(0, 0, 0, 0.1);
  --background-opacity-medium: rgba(0, 0, 0, 0.5);
  --background-opacity-dark: rgba(0, 0, 0, 0.8);
}
* {
  font: 14px monospace;
}
html {
  color: var(--color-foreground);
  background-color: var(--color-background);
  width: 100%;
  height: 100%;
  overflow: hidden;
}
body,
#root {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}
