body {
  background-color: var(--body-background);
}

p {
  line-height: 1.8;
}

html.dark  body {
  background: #41403e;
  background-color: red;
}

#top {
    max-width: 1440px;
}

.demo .row .col {
    background-color: #eee;
}

.demo .row .col:nth-child(even) {
    background-color: #ddd;
}

.docs {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.summary a {
    color: #41403e;
}

img.no-responsive {
    max-width: -webkit-fill-available;
    max-width: -moz-available;
}

.to-top {
    opacity: 1;
    display: inline-block;
    padding: 1em;
    position: fixed;
    bottom: 1em;
    right: 1em
}

.to-top .paper-btn {
    padding: .6em 1em;
    border-top-left-radius: 185px 160px;
    border-top-right-radius: 200px 195px;
    border-bottom-right-radius: 160px 195px;
    border-bottom-left-radius: 185px 190px
}
.demo-title:hover + .to-top {
    opacity: 0
}
.sidebar-title a {
  color: inherit;
  background: none;
}
.collapsible.full-width {
  width: 100%;
}

h1.mega {
  font-size: 2.5rem;
}

.home-title{
  font-weight: bold; 
}

.home-icon{
  display:inline-block;
  width: 2.5em;
  height: 2.5em;
  vertical-align: -0.2em;

  background: var(--icon-color, currentColor);

  -webkit-mask: var(--icon) center / contain no-repeat;
          mask: var(--icon) center / contain no-repeat;
}

.home-card{
  display: block;
  color: inherit;
  background-image: none; /* kills PaperCSS underline :contentReference[oaicite:4]{index=4} */
  text-decoration: none;
  padding: 1rem; /* since you moved .col outside */
}


/* Sprinklez */
  #icon-sprinkles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;          /* behind content */
    overflow: hidden;
  }

  .sprinkle {
    position: absolute;
    width: var(--s);
    height: var(--s);
    opacity: var(--o, 0.16);

    /* base placement + scroll parallax (translate) + rotation */
    transform:
      translate(-50%, -50%)
      translate3d(var(--px, 0px), var(--py, 0px), 0)
      rotate(var(--r));
    will-change: transform;

    /* tinted icon via mask */
    background: var(--c);
    -webkit-mask-image: var(--img);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
            mask-image: var(--img);
            mask-repeat: no-repeat;
            mask-position: center;
            mask-size: contain;

    /* chef’s kiss */
    mix-blend-mode: multiply;

    /* optional subtle depth */
    filter: drop-shadow(0 1px 1px rgba(0,0,0,.06));
  }

