body, h1, h2, h3, h4, h5, h6,
p, blockquote, pre, hr,
dl, dd, ol, ul, figure {
  margin: 0;
  padding: 0;
}

ul, ol {
  margin-left: 1em;
}

@font-face {
  font-family: "Sour Gummy";
  src: url("/assets/fonts/SourGummy.ttf");
}
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: "Sour Gummy";
}
body main {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  margin: 20px;
}

a {
  color: white;
  text-decoration: none;
}
a:hover {
  color: darkred;
  text-decoration: blink, underline;
}
a:visited {
  text-decoration: underline;
}

.red-line {
  border: 2px outset darkred;
  background-color: darkred;
}

body {
  background-color: rgba(222, 184, 135, 0.85);
}

html {
  scrollbar-width: thin;
  scrollbar-color: #1e2727 transparent;
}

#section-header h1 {
  background: linear-gradient(to bottom, #003b3b, rgb(30, 39, 39));
  padding-left: 1em;
  color: white;
}

#section-body {
  border-style: dashed;
  border-color: #1e2727;
  border-top-width: 0;
  display: flex;
  min-height: 94vh;
  overflow: hidden;
  box-sizing: border-box;
  flex-direction: column;
  padding-left: 1em;
  padding-right: 1em;
}
#section-body p {
  padding-top: 0.5em;
}
#section-body ul {
  list-style-type: disc;
}
#section-body ul li {
  display: inline-block;
  border: 2px dashed black;
  margin-left: 1em;
}

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