
*, *::before, *::after {
  box-sizing: border-box;
}
* {
  margin: 0;
}
html, body {
  height: 100%;
}

html {
  font-size: 62.5%;
}

body {
  counter-reset: count;
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif;
  line-height: 1.5;
  font-size: 1.6rem;
  -webkit-font-smoothing: antialiased;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}
input, button, textarea, select {
  font: inherit;
}
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

h1, h2{
  margin-bottom: 1rem;
}

h3 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

label {
  display: block;
}

section, a {
  margin-bottom: 30px;
  display: block;
}

p {
  margin-bottom: 1.2rem;
}

ul ul ul {
  margin-block-start: 10px;
}

ul {
  padding-inline-start: 20px;
}
ol {
  list-style: none;
  padding-inline-start: 40px;
}

li {
  margin: 0 0 0.5rem 0;
  position: relative;
  display: flex;
  flex-direction: column;
}
ol li {
  margin: 0 0 2rem 0;
  counter-increment: count;
}
ol li::before {
  content: counter(count);
  color: #333;
  font-size: 1.5rem;
  font-weight: bold;
  position: absolute;
  --size: 32px;
  left: calc(-1 * var(--size) - 10px);
  line-height: var(--size);
  width: var(--size);
  height: var(--size);
  top: -4px;
  border-radius: 50%;
  text-align: center;
  box-shadow: 0px 0px 2px #333;
}

input[type="checkbox"] {
 margin-inline-end: 10px;
}


.container {
  margin: 0 auto;
  padding: 20px;
  min-width: 0;
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 768px) {
  .container {
  max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
  max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
  max-width: 1040px;
  }
}


