@charset "UTF-8";

@property --black-l {
  syntax: "<number>";
  inherits: false;
  initial-value: 0.3211;
}

@property --white-l {
  syntax: "<number>";
  inherits: false;
  initial-value: 0.9881;
}

*,
*::before,
*::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  color: oklch(var(--black-l) 0 0);
  background-color: oklch(var(--white-l) 0 0);
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}

body.no-scroll {
  overflow: hidden;
}

img {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
  font-style: italic;
}

a {
  text-decoration: none;
  color: inherit;
}

:where(ul, li) {
  list-style: none;
}

:where(h1, h2, h3, p, ul, ol, li) {
  margin: 0;
  padding: 0;
}

.container {
  width: 90%;
  max-width: 1000px;
  margin-inline: auto;
  > h2 {
    > span {
      display: inline-block;
    }
  }
}
