/* Reset */

:root {
  --header-height: 0px;
}

*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  font: inherit;
}

:target {
  scroll-margin-block: calc(5ex + var(--header-height));
}

html {
  color-scheme: dark light;
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

body, h1, h2, h3, h4, h5, h6 p, figure, figcaption, blockquote, li, dl, dd {
  margin-block-end: 0;
}

body {
  -webkit-font-smoothing: antialiased;
  min-height: 100svh;
  line-height: 1.5;
}

header, footer, main, section, article {
  container-type: inline-size;
}

h1, h2, h3, h4, button, input, label {
  line-height: 1.1;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  all: unset;
}

p, li, figcaption, blockquote, dl, dd {
  text-wrap: pretty;
  overflow-wrap: break-word;
  hyphens: auto;
}

h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}

textarea:not([rows]) {
  min-height: 10em;
}

main {
  isolation: isolate;
}

/* End reset */

body {
  background-image: url("./assets/images/bg.svg");
  background-size: 1000px auto;
  background-position: center;
  background-repeat: repeat;
  background-color: #381F75;
}