html {
  scroll-behavior: smooth;
}
body {
  font-size: 18px;
  font-family: "Trebuchet MS", sans-serif;
  background: #f4f4f5;
}

h1::before {
  background-image: url("https://upload.wikimedia.org/wikipedia/commons/9/99/Unofficial_JavaScript_logo_2.svg");
  background-size: 1.5rem;
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
  width: 30px;
  height: 30px;
  content: "";
}

ol {
  list-style-position: inside;
  margin: 0rem;
  padding: 0rem;
}

div.card > li::marker {
  font-size: x-large;
  font-weight: bold;
}

h2 {
  display: inline-block;
}

.card {
  background: #fff;
  border-radius: 0.5rem;
  filter: drop-shadow(0 25px 25px rgb(0 0 0 / 0.15));
  margin: 1rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

ul {
  margin-top: 0.25em;
  list-style-type: "- ";
  list-style-position: inside;
  padding-inline-start: 1ch;
}

code {
  font-family: "Courier New", monospace !important;
  border-radius: 0.5rem;
  width: 100%;
  max-width: 85%;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

h3 {
  margin-block-start: 0em;
  margin-block-end: 0.5em;
}

.mini-card {
  border-radius: 0.5rem;
  margin: 0.5rem 0rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.mini-card:nth-of-type(odd) {
  background-color: #7dd3fc;
}
.mini-card:nth-of-type(even) {
  background-color: #60a5fa;
}
