body {
  background: black;
  color: #f4f4f4;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

a {
  color: #0cb50c;
}

::-webkit-scrollbar {
  width: 7px;
  height: 5px;
}

::-webkit-scrollbar-track {
  border-radius: 10px;
  background: rgba(128, 128, 128, 0.2);
}

::-webkit-scrollbar-thumb {
  background: #47b147;
  border-radius: 10px;
  padding: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: #0cb50c;
}

#logo {
  height: 90px;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  padding: 60px;
  padding-bottom: 80px;
}

header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

main {
  font-size: 17px;
  line-height: 25px;
  max-width: 1080px;
}

h1 {
  text-align: center;
  font-size: 28px;
}

h2 {
  display: inline-block;
  font-size: 22px;
  margin-top: 25px;
  margin-bottom: 10px;
}

h3 {
  display: inline-block;
  font-size: 17px;
  line-height: 21px;
  margin-bottom: 10px;
}

p:not(:last-child) {
  margin-bottom: 10px;
}

li {
  margin-bottom: 10px;
}

li::marker {
  font-weight: 700;
  font-size: 17px;
}

li:has(>h2)::marker {
  font-size: 22px;
}

li:has(>h3)::marker {
  font-size: 20px;
}

@media (max-width: 700px) {
  body {
    padding: 30px;
    padding-bottom: 60px;
  }

  h1 {
    font-size: 1.7em;
  }

  h2 {
    font-size: 1.1rem;
  }

  main {
    font-size: 17px;
    line-height: 22px;
  }
}