@charset "UTF-8";
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:where([hidden]:not([hidden=until-found])) {
  display: none !important;
}

:where(html) {
  -webkit-text-size-adjust: none;
  color-scheme: dark light;
}

@supports not (min-block-size: 100dvb) {
  :where(html) {
    block-size: 100%;
  }
}
@media (prefers-reduced-motion: no-preference) {
  :where(html:focus-within) {
    scroll-behavior: smooth;
  }
}
:where(body) {
  block-size: 100%;
  block-size: 100dvb;
  line-height: 1.5;
  font-family: system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

:where(textarea) {
  resize: vertical;
  resize: block;
}

:where(button, label, select, summary, [role=button], [role=option]) {
  cursor: pointer;
}

:where(:disabled) {
  cursor: not-allowed;
}

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed;
}

:where(button) {
  border-style: solid;
}

:where(a) {
  text-underline-offset: 0.2ex;
}

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

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, picture, svg) {
  max-inline-size: 100%;
  block-size: auto;
}

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

:where(h1, h2, h3) {
  line-height: calc(1em + 0.5rem);
}

:where(hr) {
  border: none;
  -webkit-border-before: 1px solid;
          border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

:where(:focus-visible) {
  outline: 2px solid var(--focus-color, Highlight);
  outline-offset: 2px;
}

:where(.visually-hidden:not(:focus, :active, :focus-within, .not-visually-hidden)) {
  -webkit-clip-path: inset(50%) !important;
          clip-path: inset(50%) !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  border: 0 !important;
}

body {
  font-size: 15px;
  counter-reset: number 0;
}

section {
  width: clamp(300px, 100%, 500px);
  margin: auto;
  padding: 2em;
  display: flex;
  flex-direction: column;
  gap: 1em;
  counter-reset: seco_number 0;
}
section h1 {
  position: relative;
  padding: 0.5em 0.5em 0.5em 1.5em;
  line-height: 1.4;
  color: #902a2f;
  border-top: solid 2px #902a2f;
  border-bottom: solid 2px #902a2f;
}
section h1:before {
  counter-increment: number 1;
  content: counter(number) ". ";
  font-weight: 900;
  position: absolute;
  font-size: 1em;
  left: 0.25em;
  top: 0.5em;
  color: #902a2f;
}
section h2 {
  color: white;
  margin: 0.5em 0;
  padding: 0.5em;
  display: inline-block;
  line-height: 1.4;
  background: #902a2f;
  vertical-align: middle;
  border-radius: 0.5em;
  font-size: 1.2em;
}
section h2:before {
  counter-increment: seco_number 1;
  content: counter(seco_number) ". ";
  margin: 0 0.5em;
}
section img {
  display: inline-block;
  margin: 0 1em;
  border: solid 1px rgb(179, 179, 179);
  width: calc(100% - 2em);
}
section ul {
  display: flex;
  flex-direction: column;
  padding-left: 1em;
  gap: 0.5em;
}
section ul li {
  text-indent: -1em;
  padding-left: 1em;
}
section ul li::before {
  content: "✔︎ ";
  color: #902a2f;
}

.dot_number_wrap {
  display: flex;
  flex-direction: column;
  gap: 1em;
  counter-reset: dot_number 0;
}
.dot_number_wrap .dot_number {
  padding-left: 1.5em;
  position: relative;
}
.dot_number_wrap .dot_number::before {
  counter-increment: dot_number 1;
  content: counter(dot_number);
  background-color: #902a2f;
  border: 1px solid;
  border-radius: 50%;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 1.5em;
  width: 1.5em;
  color: white;
  font-size: 0.9em;
  line-height: 1;
  position: absolute;
  top: 0;
  left: 0;
}

a {
  color: #902a2f;
  font-weight: bold;
}/*# sourceMappingURL=style.css.map */