/* app/client/src/styles/reset.css */
*, *:before, *:after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

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 {
  line-height: 1.5;
}

h1, h2, h3, h4, button, input, label {
  line-height: 1.1;
}

h1, h2, h3, h4 {
  text-wrap: balance;
}

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

/* app/client/src/styles/global.css */
:root {
  --color-000: oklch(100% 0 0);
  --color-100: oklch(90% 0 0);
  --color-200: oklch(80% 0 0);
  --color-300: oklch(70% 0 0);
  --color-background: oklch(100% 0 0);
  --color-foreground: oklch(0% 0 0);
  --border-radius: 4px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --color-000: oklch(0% 0 0);
    --color-100: oklch(10% 0 0);
    --color-200: oklch(20% 0 0);
    --color-300: oklch(30% 0 0);
    --color-background: #000;
    --color-foreground: #fff;
  }
}

html {
  background-color: oklch(from var(--color-000) calc(l - .02) c h);
  color: var(--color-foreground);
  --buncss-light: initial;
  --buncss-dark: ;
  color-scheme: light dark;
}

@media (prefers-color-scheme: dark) {
  html {
    --buncss-light: ;
    --buncss-dark: initial;
  }
}

@media (prefers-color-scheme: dark) {
  html {
    background-color: oklch(from var(--color-000) calc(l + .2) c h);
  }
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px var(--color-background) inset !important;
  -webkit-text-fill-color: var(--color-foreground) !important;
}

input:-webkit-autofill:hover {
  -webkit-box-shadow: 0 0 0 1000px var(--color-background) inset !important;
  -webkit-text-fill-color: var(--color-foreground) !important;
}

input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px var(--color-background) inset !important;
  -webkit-text-fill-color: var(--color-foreground) !important;
}

svg.icon {
  fill: var(--color-foreground);
  width: 3rem;
  height: 3rem;
}

/* app/client/src/index.css */
html {
  background-color: var(--color-background);
  color: var(--color-foreground);
  overflow: hidden;
  --buncss-light: initial;
  --buncss-dark: ;
  color-scheme: light dark;
}

@media (prefers-color-scheme: dark) {
  html {
    --buncss-light: ;
    --buncss-dark: initial;
  }
}

header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items:  center;
}

header ul {
  display: flex;
  list-style: none;
  flex-direction: row;
  justify-content: end;
  gap: 1rem;
}

footer {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items:  center;
}
