/* =========================================================
   GARRANCE CANON â€” RETRO PERSONAL-WEB STYLE
   This stylesheet keeps your original HTML structure.
   Change things here instead of rewriting the HTML.
   ========================================================= */

@font-face {
  font-family: Nunito;
  src: url("https://sadhost.neocities.org/fonts/Nunito-Regular.ttf");
}
@font-face {
  font-family: Nunito;
  src: url("https://file.garden/alI-_LycaBmTlH_M/momo/fonts/CHERL___.TTF");
  font-weight: bold;
}
@font-face {
  font-family: nds;
  src: url("https://file.garden/alI-_LycaBmTlH_M/momo/fonts/Nintendo-DS-BIOS.ttf");
}
@font-face {
  font-family: Nunito;
  src: url("https://sadhost.neocities.org/fonts/Nunito-Italic.ttf");
  font-style: italic;
}
@font-face {
  font-family: Nunito;
  src: url("https://sadhost.neocities.org/fonts/Nunito-BoldItalic.ttf");
  font-style: italic;
  font-weight: bold;
}

:root {
  --pink: #f09bc1;
  --hot-pink: #cf4c88;
  --dark-pink: #8d3d68;
  --pale-pink: #ffeaf4;
  --cream: #fffafc;
  --yellow: #fff19a;
  --blue: #9fd8ed;
  --lavender: #d9c8f0;
  --ink: #6e4057;
  --white: #ffffff;

  --header-image: url("https://file.garden/alI-_LycaBmTlH_M/gifs/dog.webp");
  --body-bg-image: url("https://file.garden/alI-_LycaBmTlH_M/bgs/39.jpg");
}

/* -------------------------
   PAGE / BODY
   ------------------------- */

* {
  box-sizing: border-box;
}

html {
  background: #f4c9dd;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Nunito", sans-serif;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.45;

  background-color: #f7d4e4;
  background-image:
    url("https://file.garden/alI-_LycaBmTlH_M/bgs/781.gif");
  background-repeat: repeat;
}

body::selection {
  background: #ffd7e8;
  color: #8d3d68;
}

a {
  color: var(--hot-pink);
  font-weight: bold;
}

a:hover {
  color: #7a5aa6;
  text-decoration: underline;
}

img {
  max-width: 100%;
}

/* -------------------------
   MAIN WEBSITE FRAME
   ------------------------- */

#container {
  width: min(900px, calc(100% - 20px));
  margin: 18px auto 30px;

  background: rgba(255, 250, 253, 0.96);
  border: 3px solid #fff;
  outline: 2px solid var(--hot-pink);
  box-shadow:
    7px 7px 0 rgba(105, 51, 79, 0.22),
    0 0 0 5px rgba(255,255,255,.35);

  position: relative;
}

/* -------------------------
   TOP DECORATIVE STRIP
   ------------------------- */

#topBar {
  width: 100%;
  height: 30px;
  padding: 10px;
  overflow: hidden;

  background: #fff;
  border-bottom: 2px dashed var(--pink);
}

#topBar img {
  display: block;
  width: 100%;
  height: 30px;
  object-fit: cover;
}

/* -------------------------
   BIG HEADER
   ------------------------- */

#header {
  width: 100%;
  height: 170px !important;
  position: relative;
  overflow: hidden;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  background-color: #f8b3d0;
  background-image:
    linear-gradient(rgba(255,255,255,.18), rgba(255,255,255,.18)),
    var(--header-image);
  background-size: cover;
  background-position: center;

  border-bottom: 4px double #fff;
}

.header-title {
  font-family: nds, "Courier New", monospace;
  font-size: clamp(48px, 8vw, 78px);
  line-height: .72;
  letter-spacing: 3px;
  text-align: center;

  color: #fff;
  transform: rotate(-2deg);

  text-shadow:
    3px 3px 0 var(--hot-pink),
    6px 6px 0 rgba(255,255,255,.85);
}

.header-title em {
  display: block;
  font-size: .72em;
  font-style: normal;
  color: #fff0a3;

  text-shadow:
    2px 2px 0 var(--dark-pink),
    4px 4px 0 rgba(255,255,255,.85);
}

.header-subtitle {
  margin-top: 20px;
  padding: 4px 12px;

  background: #fff;
  border: 2px dashed var(--hot-pink);
  color: var(--dark-pink);

  font-size: 12px;
  font-weight: bold;

  transform: rotate(1deg);
  box-shadow: 2px 2px 0 rgba(100,50,70,.18);
}

.header-sticker {
  position: absolute;
  z-index: 2;

  padding: 6px 10px;
  background: var(--yellow);
  border: 2px solid #d5b73e;

  color: #8b6b17;
  font-family: "Courier New", monospace;
  font-size: 11px;
  font-weight: bold;

  box-shadow: 3px 3px 0 rgba(90,50,60,.2);
}

.header-sticker-left {
  left: 18px;
  top: 22px;
  transform: rotate(-7deg);
}

.header-sticker-right {
  right: 18px;
  bottom: 20px;
  transform: rotate(6deg);
}

/* -------------------------
   NAVIGATION
   ------------------------- */

#headerArea {
  background: #fff;
}

#navbar {
  width: 100%;
  height: auto;
  margin-bottom: 0 !important;
  padding: 7px;

  background: #fff;
  border-bottom: 2px solid var(--pink);
}

#navbar ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;

  margin: 0;
  padding: 0;

  list-style: none;
}

#navbar li {
  padding: 0;
}

#navbar li a {
  display: block;

  padding: 5px 10px;

  color: #fff;
  background: var(--hot-pink);

  border: 2px outset #f8c0d7;
  box-shadow: 2px 2px 0 var(--dark-pink);

  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

#navbar li:nth-child(2n) a {
  background: #83c7df;
  border-color: #c5edfa;
  box-shadow: 2px 2px 0 #5d96ac;
}

#navbar li:nth-child(3n) a {
  background: #a88cc9;
  border-color: #e1d5f0;
  box-shadow: 2px 2px 0 #78649a;
}

#navbar li a:hover {
  color: #fff;
  background: #e46ba3;
  text-decoration: none;
  transform: translate(1px, 1px);
}

/* -------------------------
   SCROLLING OLD-WEB MESSAGE
   ------------------------- */

.site-marquee {
  height: 25px;
  overflow: hidden;
  white-space: nowrap;

  background: #fff0a1;
  border-bottom: 2px dotted #d3ad36;

  color: #82671e;
  font-family: "Courier New", monospace;
  font-size: 11px;

  padding-top: 3px;
}

.site-marquee span {
  display: inline-block;
  padding-left: 100%;
  animation: old-web-marquee 22s linear infinite;
}

@keyframes old-web-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

/* -------------------------
   THREE-COLUMN LAYOUT
   ------------------------- */

#flex {
  display: flex;
  align-items: stretch;
  gap: 10px;

  padding: 10px;

  background-image:
    url("https://file.garden/alI-_LycaBmTlH_M/bgs/39.jpg");
  background-repeat: repeat;
}

/* Sidebars */
aside {
  width: 190px;
  flex: 0 0 190px;

  padding: 10px;

  background: rgba(255,255,255,.55);
  border: 2px solid #fff;
  outline: 1px solid var(--pink);

  font-size: 12px;

  box-shadow: 3px 3px 0 rgba(100,50,75,.12);
}

#leftSidebar {
  order: 1;
  transform: rotate(-.4deg);
}

#rightSidebar {
  order: 3;
  transform: rotate(.5deg);
}

/* Main content */
main {
  order: 2;
  flex: 1;
  min-width: 0;

  position: relative;

  padding: 12px;

  background:
    url("https://file.garden/alI-_LycaBmTlH_M/bgs/578.gif") repeat;

  border: 2px solid #fff;
  outline: 1px solid var(--pink);

  box-shadow: 3px 3px 0 rgba(100,50,75,.13);
}

/* -------------------------
   SIDEBAR HEADINGS
   ------------------------- */

h1,
h2,
h3 {
  margin-top: 8px;
}

h1 {
  font-size: 25px;
}

h2 {
  margin-bottom: 7px;
  padding: 4px 7px;

  background: linear-gradient(90deg, var(--hot-pink), #eda5c6);
  border: 2px solid #fff;

  color: #fff;
  font-size: 13px;
  text-transform: lowercase;

  text-shadow: 1px 1px 0 var(--dark-pink);
  box-shadow: 2px 2px 0 rgba(100,50,75,.15);
}

h3 {
  padding: 5px;
  margin-top: 4px;

  background: #fff8a8;
  border: 2px dashed #d5b43c;

  color: #856919;
  font-family: "Courier New", monospace;
  font-size: 11px;
  text-align: center;

  transform: rotate(-2deg);
}

strong {
  color: var(--hot-pink);
}

/* -------------------------
   SIDEBAR BOXES
   ------------------------- */

.box {
  margin-bottom: 12px;
  padding: 9px;

  background: rgba(255,255,255,.94);
  border: 2px solid #fff;
  outline: 1px solid #e9a8c3;

  box-shadow: 3px 3px 0 rgba(100,50,75,.15);
}

.box p {
  margin-top: 0;
}

.box ul {
  margin-bottom: 4px;
}

.retro-box {
  margin-bottom: 12px;
  padding: 7px;

  background: #fff;
  border: 2px inset #e8b0c8;
  text-align: center;
}

.mood-box img {
  max-width: 100%;
}

.tiny-buttons {
  display: flex;
  justify-content: center;
  gap: 4px;
  flex-wrap: wrap;
  margin-top: 9px;
}

.tiny-buttons span {
  padding: 3px 5px;

  background: #a9def1;
  border: 1px solid #5c9bb4;

  color: #315d70;
  font: bold 8px "Courier New", monospace;
}

.date-stamp {
  padding: 5px;

  background: #fff;
  border: 2px dotted var(--hot-pink);

  color: var(--hot-pink);
  font-family: "Courier New", monospace;
  font-size: 10px;
  text-align: center;
}

.under-construction {
  margin: 15px auto 5px;
  padding: 7px;

  width: 120px;

  background: #fff08d;
  border: 2px dashed #d0ab32;

  color: #806516;
  font-family: "Courier New", monospace;
  font-size: 11px;
  font-weight: bold;
  line-height: 1.05;
  text-align: center;

  transform: rotate(3deg);
}

/* -------------------------
   MAIN CONTENT WINDOWS
   ------------------------- */

.content-window {
  margin-bottom: 14px;

  background: rgba(255,255,255,.95);

  border: 2px solid #fff;
  outline: 1px solid var(--pink);

  box-shadow: 4px 4px 0 rgba(100,50,75,.16);
}

.welcome-window {
  transform: rotate(-.35deg);
}

.window-title {
  padding: 6px 9px;

  background: linear-gradient(90deg, var(--hot-pink), #efa9c9);
  border-bottom: 2px solid #fff;

  color: #fff;
  font-size: 14px;
  font-weight: bold;

  text-shadow: 1px 1px 0 var(--dark-pink);
}

.blue-title {
  background: linear-gradient(90deg, #69b5d5, #a8dff0);
  text-shadow: 1px 1px 0 #4c8298;
}

.window-body {
  padding: 12px;
}

.window-body p:first-child {
  margin-top: 0;
}

.character-row {
  display: flex;
  align-items: center;
  gap: 8px;

  margin-top: 5px;
}

.character-row img {
  border: 2px solid #fff;
  box-shadow: 2px 2px 0 var(--pink);
  transform: rotate(3deg);
}

.little-note {
  padding: 4px 7px;

  background: #fff5a5;
  border: 1px dashed #d0ac36;

  color: #806616;
  font: 9px "Courier New", monospace;

  transform: rotate(-2deg);
}

/* -------------------------
   RANDOM OVERLAPPING STICKERS
   ------------------------- */

.main-corner-sticker {
  position: absolute;
  z-index: 20;

  padding: 6px 10px;

  background: #fff4a1;
  border: 2px solid #fff;
  outline: 2px solid #d2ad39;

  color: #8a6a16;
  font-family: "Courier New", monospace;
  font-size: 12px;
  font-weight: bold;

  box-shadow: 4px 4px 0 rgba(80,50,60,.18);
}

.sticker-hello {
  top: -9px;
  right: -8px;
  transform: rotate(7deg);
}

.sticker-face {
  top: 190px;
  left: -10px;

  background: #d9c8ef;
  border-color: #fff;
  outline-color: #a88bc7;
  color: #72558c;

  transform: rotate(-8deg);
}

/* -------------------------
   GUESTBOOK
   ------------------------- */

.guestbook-window {
  transform: rotate(.3deg);
}

.guestbook-body {
  padding: 8px;

  background:
    url("https://file.garden/alI-_LycaBmTlH_M/bgs/547.gif") repeat;

  text-align: center;
}

.guestbook-body iframe {
  display: block;
  width: 100%;
  max-width: 450px;
  height: 550px;
  margin: 0 auto;

  border: 3px ridge #dda8c2;
  background: #fff;
}

/* -------------------------
   RIGHT-SIDEBAR DECOR
   ------------------------- */

.update-box {
  transform: rotate(.5deg);
}

.side-image {
  padding: 7px;
  margin: 8px 0 12px;

  text-align: center;

  background: #fff;
  border: 2px solid #fff;
  outline: 1px dashed var(--hot-pink);

  box-shadow: 3px 3px 0 rgba(100,50,75,.13);

  transform: rotate(-2deg);
}

.side-image img {
  max-width: 100%;
  height: auto;
}

.important-box {
  position: relative;
}

.box-label {
  margin: -3px -3px 8px;
  padding: 4px;

  background: #d7c2ef;
  border: 1px dashed #9874bd;

  color: #70518b;
  font-family: "Courier New", monospace;
  font-size: 9px;
  font-weight: bold;
  text-align: center;
}

.best-viewed {
  width: 145px;
  margin: 18px auto 4px;
  padding: 7px;

  background: #c5ebf7;
  border: 2px dotted #5794ac;

  color: #3e6f81;
  font-family: "Courier New", monospace;
  font-size: 9px;
  font-weight: bold;
  line-height: 1.15;
  text-align: center;

  transform: rotate(3deg);
}

/* -------------------------
   DIVIDER
   ------------------------- */

.sparkle-divider {
  margin: 10px 0 14px;

  color: var(--hot-pink);
  font-size: 18px;
  letter-spacing: 5px;
  text-align: center;

  text-shadow: 1px 1px 0 #fff;
}

/* -------------------------
   FOOTER
   ------------------------- */

#footer {
  width: 100%;
  min-height: 48px;
  height: auto;

  padding: 8px;

  background: #fff;
  border-top: 3px double var(--pink);

  color: var(--dark-pink);
  text-align: center;
}

#footer span {
  display: block;
  margin-top: 2px;

  color: #a06a84;
  font: 9px "Courier New", monospace;
  font-weight: normal;
}

/* -------------------------
   MOBILE
   ------------------------- */

@media only screen and (max-width: 800px) {
  #container {
    width: calc(100% - 12px);
    margin: 8px auto 20px;
  }

  #header {
    height: 145px !important;
  }

  .header-title {
    font-size: 55px;
  }

  #flex {
    flex-wrap: wrap;
  }

  aside {
    width: calc(50% - 5px);
    flex: 1 1 calc(50% - 5px);
  }

  main {
    width: 100%;
    flex-basis: 100%;
    order: 1;
  }

  #leftSidebar {
    order: 2;
  }

  #rightSidebar {
    order: 3;
  }

  .site-marquee {
    font-size: 10px;
  }
}

@media only screen and (max-width: 520px) {
  body {
    font-size: 13px;
  }

  #header {
    height: 125px !important;
  }

  .header-title {
    font-size: 44px;
  }

  .header-sticker {
    display: none;
  }

  #navbar li a {
    padding: 5px 7px;
    font-size: 10px;
  }

  #flex {
    display: block;
    padding: 7px;
  }

  aside,
  main {
    width: 100%;
    margin: 0 0 10px !important;
  }

  #leftSidebar,
  #rightSidebar,
  .welcome-window {
    transform: none;
  }

  .main-corner-sticker {
    display: none;
  }

  .character-row {
    justify-content: center;
  }

  .guestbook-body iframe {
    height: 500px;
  }
   .buttonset-1.ws-marquee-viewport {
    position: relative;
    background: #ffffff;
    padding: 24px 0;
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.buttonset-1 .ws-img {
    width: auto;
    filter: opacity(0.85);
    transition: filter 0.2s ease;
}

.buttonset-1 .ws-btn:hover .ws-img {
    filter: opacity(1);
}
}