<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">main {
  margin: 0 auto;
  width: 1200px;
  box-sizing: border-box;
  flex: 1; /* This makes the main element take up all the space that is left */
}

main:has(.right-fixed) {
  margin: 0 0 0 5em;
}

main nav {
  display: flex;
  margin-bottom: 2em;
  background: white;
  box-shadow: inset 0px -2px 0 var(--dark-blue);
}

nav a {
  padding: 0.5em 1em;
  border-bottom: 2px solid var(--dark-blue);
  border-right: 1px solid var(--dark-blue);
}

nav a:hover {
  background: hsl(216, 20%, 95%);
  border-bottom: 2px solid var(--light-green);
  color: var(--light-green);
  text-decoration: none;
}

nav a.active {
  border-bottom: 2px solid hsl(104deg 81% 29%);
  background: var(--light-green);
  color: white;
}

main :not(section) aside {
  background: hsl(0, 0%, 97%);
  padding: 25px 20px;
  position: relative;
  border: 1px solid hsl(0, 0%, 89%);
}

main :not(section) aside h2 {
  text-align: center;
}

main :not(section) aside.focus {
  padding: 30px 50px;
  box-shadow: none;
}

main :not(section) aside.side {
  padding-left: 420px;
}

main :not(section) aside.side h2 {
  background: var(--dark-blue);
  color: hsl(0, 0%, 100%);
  position: absolute;
  height: 100%;
  width: 400px;
  left: 0;
  top: 0;
  padding: 25px;
  margin: 0;
}

main :not(section) aside:has(&gt; details) {
  padding: 0;
}

main :not(section) aside details {
  margin: 0;
}

main :not(section) .columns .focus {
  margin: -25px -20px;
  padding: 10px 20px;
}

main :not(section) .columns .focus h2 {
  margin: 10px 0;
}

main section {
  --section-padding: 10px;
  position: relative;
  background: hsl(0, 0%, 100%);
  box-shadow: 0px 1px 5px 0 hsl(0deg 0% 0% / 15%);
  border-top: 5px solid var(--dark-blue);
  padding: 1em var(--section-padding) 2em;
  margin: 1.5em 0;
}

main section.simple {
  padding: 0;
  margin: 0;
  border: none;
  box-shadow: none;
}

main section:empty {
  display: none;
}

main section h2,
main section h3 {
  margin: 0;
  background-color: #f0f2f5;
  padding: 15px 20px;
  text-transform: uppercase;
  position: relative;
  left: calc(-1 * var(--section-padding));
  width: calc(100% + var(--section-padding) * 2);
  top: -1rem;
}

main section aside {
  background: hsl(216deg 20% 95%);
  margin: -1em calc(-1 * var(--section-padding)) 1em calc(-1 * var(--section-padding));
  padding: 1em 1em 0.6em;
  box-shadow: none;
}

main section:has(&gt; code:last-child) {
  padding-bottom: 0;
}
</pre></body></html>