/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: #eeeeee;
  color: black;
  font-family: sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

details {
  user-select: none;
}

details>summary span.icon {
  width: 24px;
  height: 24px;
  transition: all 0.3s;
  margin-left: auto;
}

.main-container {
  background-color: white;
  min-width:728px;
  margin: 18px auto;
  max-width: calc(100% - 72px);
  width: 1214px;
  position: relative;
  padding: 4px 4px 3px 3px;
  border-radius:3px;
}

details[open] summary span.icon {
  transform: rotate(180deg);
}

h1 {
  background-color:#cacdd1;
  border-radius:3px;
    padding: 4px 4px 3px 3px;
    font-size:1.3em;
}

hr {
  color:#cacdd1;
}

h2 {
  background-color:#cacdd1;
  border-radius:3px;
    padding: 4px 4px 3px 3px;
    font-size: 1em;
}

h3 {
  background-color:#cacdd1;
  border-radius:3px;
    padding: 4px 4px 3px 3px;
    font-size: 0.84em;
    font-weight: normal;
}

summary {
  display: flex;
  cursor: pointer;
  border-radius:8px;
  border: 1px solid #cacdd1;
  padding: 8px;
  margin-bottom: 5px;
}

summary::-webkit-details-marker {
  display: none;
}

li {
  margin-top:1px;
}

a:link {
  text-decoration: none;
  color: #006bb1;
}

a:visited {
  text-decoration: none;
  color: #006bb1;
}