/* Variables - Change these to recolor or resize the whole layout. */
:root {
  --bg: #eee7d8;
  --paper: #fffaf0;
  --paper2: #f8efdc;
  --box-bg: #fffdf7;
  --link-bg: #fffaf2;

  --ink: #ece1c9;
  --muted: #7b6d5a;

  --line: #ece1c9;
  --soft-line: #ece1c9;
  --inner-border: #ece1c9;

  --shadow: rgba(203, 189, 164, .25);
  --soft-shadow: rgba(203, 189, 164, .22);

  --font-main: Georgia, "Times New Roman", serif;

  --site-width: 860px;
  --sidebar-width: 210px;

  --page-gap: 18px;
  --section-gap: 18px;
  --grid-gap: 28px 18px;

  --box-padding: 16px 10px 10px 10px;
  --box-margin-top: 12px;
}

  

/* Basics */
  
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 10px;
  background: #e8ecef url(https://i.pinimg.com/1200x/bb/0f/9c/bb0f9ce90fd6f35a9440226d8bb6f949.jpg) fixed;
  font-family: var(--font-main);
  letter-spacing: 1px;
  color: var(--ink);
  font-size: 13px;
}

a {
  color: var(--ink);
}
  
  a:hover {text-decoration:none;}

p {
  margin: 0 0 8px;
}

h1,
h2,
h3 {
  color: var(--ink);
}

h2,
h3 {
  margin: 6px 0 10px;
  font-style: italic;
}

.icon {
  opacity: 1;
  vertical-align: middle;
}

.line {
  height: 0;
  border-bottom: 1px dashed var(--line);
  margin-top: 8px;
  margin-bottom: 8px;
}
  
  
  
  
/* Scrollbar */

::-webkit-scrollbar {
  width: 13px;
  height: 13px;
}

::-webkit-scrollbar-track {
  background:var(--paper);
  background-size: 5px 5px;
  border-left: 1px solid rgba(203, 189, 164, .45);
}

::-webkit-scrollbar-thumb {
  background:var(--paper2);
  border: 1px solid var(--line);
}

::-webkit-scrollbar-thumb:hover {
  background:
    var(--paper2);
  border-style: dashed;
}

::-webkit-scrollbar-corner {
  background: var(--paper);
}
  
  
/* Container */
.container {
  max-width: var(--site-width);
  margin: auto;
  padding: 10px;
}
  

/* Header */
header {
  text-align: center;
  padding: 16px 90px 12px;
  margin-bottom: 26px;
}

.banner-img {
  transform: translateY(28px) rotate(-6deg);
  animation: bannerFloat 4s ease-in-out infinite;
}

@keyframes bannerFloat {
  0%, 100% {
    transform: translateY(22px) rotate(-6deg);
}

  50% {
    transform: translateY(14px) rotate(3deg);
}
}

h1 {
  display: inline-block;
  position: relative;
  margin: 6px 0 10px;
  padding: 2px 34px 6px;
  border-image:url(sage-border.png) 8 fill round;
  border-width:9px;
  font-family: "Jacquard 24";
  border-style:solid;
  background: #BD5B306;
  font-size: 34px;
  font-weight: 700;
  font-style: italic;
  letter-spacing: 3px;
  color: #793b2;
  text-shadow:-3px 3px 2px #342b22;
}

h1::before,
h1::after {
  content: "✧";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  opacity: .6;
  color: #2c2725;
}

h1::before {
  left: 10px;
}

h1::after {
  right: 10px;
}

.subtitle {
  font-style: italic;
  font-size: 12px;
  color: var(--muted);
}

.header-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}

.header-nav a {
  padding: 2px 8px 3px 8px;
  border: 1px solid var(--line);
  text-decoration: none;
  color: var(--ink);
  font-size: 14px;
  background: #fff;
}

.header-nav a:hover {
  background: var(--paper2);
  border-style: dashed;
}


/* Layout */
.layout {
  display: grid;
  grid-template-columns: 1fr var(--sidebar-width) ;
  gap: var(--page-gap);
}

.sidebar,
.main,
.side-stack {
  display: flex;
  flex-direction: column;
  gap: var(--section-gap);
}
  

/* Boxes + titles */
  .side-box, side-box::before {
  border-image:url(ink-border.png) 7 fill round;
  border-width:9px;
  border-style:solid;
  position: relative;
  margin-top: var(--box-margin-top);
  padding: var(--box-padding);
  background: #514c346;
}
  
.box {
  border-image:url(rose-border.png) 7 fill round;
  border-width:9px;
  border-style:solid;
  position: relative;
  margin-top: var(--box-margin-top);
  padding: var(--box-padding);
  background: #514c346;
}
  
.wide-box {
  border-image:url(antique-border.png) 7 fill round;
  border-width:9px;
  border-style:solid;
  position: relative;
  margin-top: var(--box-margin-top);
  padding: var(--box-padding);
  background: #514c346;
}
  
.wide-box::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px dashed var(--inner-border);
  pointer-events: none;
}

.title {
  position: absolute;
  top: -12px;
  left: 14px;
  padding: 2px 10px 1px 10px;
  background: #0006;
  border-image:url(charcoal-border.png) 7 fill round;
  border-width:2px;
  border-style:solid;
  font-size: 11px;
  text-transform: uppercase;
  color: #ece1c9;
  letter-spacing: 2px;
}


/* Intro box + floating image on the corner */
.intro-box {
  overflow: visible;
  padding-right: 5px;
}

.corner-img {
  position: absolute;
  top: -24px;
  right: -22px;
  width: 82px;
  height: 82px;
  object-fit: cover;
  border: 1px solid var(--line);
  padding: 4px;
  background: var(--link-bg);
  opacity: .72;
  transform: rotate(8deg);
  box-shadow: 3px 3px 0 rgba(203, 189, 164, .28);
  animation: cornerFloat 4s ease-in-out infinite;
  z-index: 4;
}

@keyframes cornerFloat {
  0%, 100% {
    transform: rotate(8deg) translateY(0);
  }

  50% {
    transform: rotate(12deg) translateY(-6px);
  }
}
  

/* Profile  */
.profile-img {
  width: 165px;
  height: 165px;
  object-fit: cover;
  border-radius: 0;
  float: left;
  margin: 5px 10px 6px 0;
  border: 1px solid var(--line);
  padding: 3px;
  background: var(--link-bg);
  transform: rotate(-5deg);
  box-shadow: 2px 2px 0 var(--shadow);
  animation: profileFloat 5.5s ease-in-out infinite;
}

@keyframes profileFloat {
  0%, 100% {
    transform: rotate(-5deg) translateY(0);
  }

  50% {
    transform: rotate(-2deg) translateY(-5px);
  }
}

.profile-name {
  display: block;
  margin-bottom: 3px;
  font-weight: 700;
  font-size: 14px;
  font-style: italic;
  font-family:"Jacquard 24" serif;
}


/* Social links */
.social-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.social-links a {
  display: block;
  padding: 4px 7px;
  border: 1px solid #2c2725;
  background: #798165;
  text-decoration: none;
  font-size: 12px;
}

.social-links a:hover {
  background: rgba(121, 129, 101, 0.74);
  border-style: dashed;
  padding-left: 12px;
}

  
/* Currently */
.currently-note {
  margin-bottom: 8px;
  padding: 5px 7px;
  text-align: center;
  border-top: 1px dashed #ece1c988;
  border-bottom: 1px dashed #ece1c988;
  background: #ece1c938;
  font-size: 11px;
  font-style: italic;
  opacity: .88;
}

.currently-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.currently-item {
  position: relative;
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 6px;
  align-items: center;
  padding: 5px 6px;
  border: 1px solid #ece1c9;
  background: #cfa96f;
  box-shadow: 1px 1px 0 var(--soft-shadow);
}

.currently-item::after {
  content: "";
  position: absolute;
  left: 28px;
  right: 6px;
  bottom: 4px;
  border-bottom: 1px dotted #ece1c9;
}

.currently-pixel {
  width: 16px;
  height: 16px;
  object-fit: contain;
  justify-self: center;
}

.currently-text {
  position: relative;
  z-index: 1;
  line-height: 1.25;
}

.currently-text b {
  display: block;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #793b2b;
}

.currently-text span {
  display: block;
  font-size: 13px;
  font-style: italic;
  color: var(--ink);
}


/* Site info */
.site-stamp {
  margin-bottom: 8px;
  padding: 6px;
  text-align: center;
  border: 1px dashed #ece1c9;
  background: #cfa96f;
  background-size: 5px 5px;
  font-size: 11px;
  font-style: italic;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.45);
}

.site-stamp img {
  opacity: .75;
}

.site-details {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.site-detail-row {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 6px;
  align-items: center;
  padding: 4px 6px;
  border-bottom: 1px dotted rgba(123,109,90,.22);
  background: linear-gradient(90deg, rgba(208,169,112,.45), transparent);
}

.site-detail-row b {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: .78;
}

.site-detail-row span {
  font-size: 12px;
  font-style: italic;
}

.site-icon-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  margin-top: 9px;
  padding-top: 8px;
  border-top: 1px dashed rgba(203, 189, 164, .65);
}

.site-icon-links a {
  display: inline-flex;
  width: 23px;
  height: 23px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(203, 189, 164, .65);
  background: var(--link-bg);
  box-shadow: 1px 1px 0 var(--soft-shadow);
  text-decoration: none;
}

.site-icon-links a:hover {
  transform: translateY(-2px);
  background: var(--paper2);
  border-style: dashed;
}

.site-icon-links img {
  width: 16px;
  height: 16px;
  opacity: .78;
}
  
  
/* Grids on main section */
.notes-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr ;
  gap: var(--grid-gap);
}

.two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--grid-gap);
}

.three-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gap);
}
  

/* Minibloggy */
.miniblog {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.blog-entry {
  position: relative;
  padding: 10px 10px 10px 14px;
  border: 1px solid #ece1c9;
  background: #8c6046;
  color: #f1e4cc;
  box-shadow: 2px 2px 0 var(--shadow);
}

.blog-entry::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 9px;
  bottom: 9px;
  border-left: 2px solid #ece1c966;
}

.blog-date {
  display: inline-block;
  margin-bottom: 5px;
  padding: 1px 6px;
  border-image:url(ink-border.png) 8 fill round;
  border-width:3px;
  border-style:solid;
  color: #f1e4cc;
  background: #00066;
  font-size: 11px;
  font-style: italic;
}

.blog-entry p {
  margin: 0;
}

.blog-mood {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  color: #793b2b;
  opacity: .85;
}


/* To-do list */
.todo-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.todo-list li {
  position: relative;
  padding: 4px;
  margin-bottom: 4px;
  border-bottom: 1px dotted #ece1c9;
}

.todo-list li.done {
  color: #ece1c970;
}
  

/* Gallery / Pngs */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 4px;
}

.gallery-item {
  width: 100%;
  padding: 5px 5px 10px;
  border: 1px dashed var(--line);
  background: var(--link-bg);
}

.gallery-item img {
  display: block;
  width: 100%;
  height: 90px;
  object-fit: cover;
  border: 1px solid rgba(120,95,65,.25);
  opacity: 0.7;
}

.gallery-caption {
  font-size: .7rem;
  text-align: center;
  color: var(--muted);
  margin-top: 4px;
}


/* Button wall / neighbors */
.web-neighbors {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  align-items: center;
}

.web-neighbor-button {
  display: inline-block;
  border: 1px dashed var(--line);
  background: var(--link-bg);
  margin-right: 8px;
}

.web-neighbor-button:hover {
  transform: translateY(-1px);
  background: var(--paper2);
  border-style: dashed;
}

.web-neighbor-button img {
  display: block;
  width: 88px;
  height: 31px;
  object-fit: cover;
  opacity: .82;
}


/* Footer */
footer {
  position: relative;
  margin-top: 32px;
  padding: 18px 14px 16px;
  text-align: center;
  border: 1px solid #2c2725;
  background: #798165;
  color: #2c2725;
  box-shadow: 3px 3px 0 var(--soft-shadow);
}

footer::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px dashed #2c2725;
  pointer-events: none;
}

.footer-inner {
  position: relative;
  z-index: 1;
}

.footer-title {
  display: inline-block;
  padding: 2px 18px 4px;
  margin-bottom: 7px;
  border-top: 1px solid #f1e4cc;
  border-bottom: 1px solid #f1e4cc;
  background: linear-gradient(90deg, transparent, rgba(241, 228, 204, 0.58), transparent);
  font-size: 14px;
  font-weight: 700;
  font-style: italic;
  letter-spacing: 2px;
}

.footer-links {
  margin: 6px 0;
  font-size: 12px;
  
}

.footer-links a {
  text-decoration: none;
  padding: 1px 6px;
  border-bottom: 1px dotted rgba(123,109,90,.45);
  color: #f1ee4cc;
}

.footer-links a:hover {
  background: #ece1c9;
}

.footer-note {
  margin-top: 6px;
  font-size: 12px;
  font-style: italic;
  opacity: .88;
}

.facts {
  display: grid;
  gap: 6px;
  margin-bottom: 0;
}
  
.facts span {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 5px 7px;
  border-bottom: 1px dotted #ece1c9;
}
  
.facts strong {
  font-weight: 900;
}

@media (max-width: 760px) {
  header {
    padding: 16px 20px 12px;
}

h1 {
   margin-top: 22px;
}
  
.intro-box {
  padding-right: 12px;
}

.corner-img {
  width: 62px;
  height: 62px;
  top: -18px;
  right: -8px;
}
}
  
div.scrollmenu {
  background-color: #f1e4cc;
  overflow: auto;
  white-space: nowrap;
}

div.scrollmenu a {
  display: inline-block;
  color: white;
  text-align: center;
  padding: 14px;
  text-decoration: none;
}

div.scrollmenu a:hover {
  background-color: #777;
}
.sticky{
  position:relative;
  width:fit-content;
  margin:0 auto}
      .player-container {
        font-family: sans-serif;
      }
      .player-top {
        display: flex;
        align-items: center;
      }
      .cd-cover {
        width: 150px;
        height: 150px;
        background: url("https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Fimg.discogs.com%2F5fSZTj2_Z4pSm5evPcNpLIrSP_Q%3D%2Ffit-in%2F500x504%2Ffilters%3Astrip_icc()%3Aformat(jpeg)%3Amode_rgb()%3Aquality(90)%2Fdiscogs-images%2FR-1056783-1227378583.jpeg.jpg&f=1&nofb=1&ipt=958558842e54d6e5b2d2a67c5ff9da8354b2eda4fcfaeec8ddec8c53ac2b17e4") no-repeat
          center/cover; /* change the cover here */
        border: 2px solid #ccc;
        border-radius: 5px;
      }
      .controls {
        display: flex;
        flex-direction: column;
        margin-left: 10px;
      }
      .controls button {
        width: 40px;
        height: 40px;
        margin-bottom: 10px;
        font-size: 18px;
        cursor: pointer;
        border: none;
        background-color: #eee;
        border-radius: 4px;
        transition: background 0.2s ease;
      }
      .controls button:hover {
        background-color: #ddd;
      }
      .song-title {
        width: 150px;
        margin-top: 10px;
        text-align: center;
        font-size: 14px;
        color: #333;
      }