html {
  position: absolute;
  left: 0;
  right: 0;
  overflow-x: hidden;
  padding: 0;
}

body {
  margin: 0;
  padding: 1rem;
  overflow-x: hidden;
  position: relative;
  padding-bottom: 2rem;
}

main {
  margin-top: 3rem;
}
main #header-img {
  margin-left: -2rem;
  margin-right: -2rem;
  margin-top: -5rem;
  margin-bottom: -4rem;
  max-width: calc(100% + 4rem);
  filter: drop-shadow(0 0 10px var(--color-bg-secondary));
}
main #title {
  position: relative;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
main #title > h1 {
  position: relative;
  z-index: 10;
  text-shadow: 0 0 10px white;
}
main #title > img {
  position: absolute;
}
main #end {
  margin-bottom: -2rem;
  border-radius: inherit;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
main ul {
  list-style: none;
  padding-left: 0;
}
main ul li {
  padding: 0.5rem 2rem;
}
main ul li:nth-child(even) {
  background-color: #bad5e1;
}
main dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0;
}
main dl dd, main dl dt {
  margin: 0;
  padding: 0.4rem 2rem;
}
main dl dd:nth-of-type(even), main dl dt:nth-of-type(even) {
  background-color: #bad5e1;
}
@media (max-width: 480px) {
  main dl {
    grid-template-columns: 100%;
  }
  main dl dd, main dl dt {
    padding: 0.4rem;
  }
  main dl dd {
    padding-top: 0.1rem;
  }
  main dl dt {
    padding-bottom: 0.1rem;
  }
}

/*# sourceMappingURL=index.css.map */
