    :root {
      --site-max-width: 1200px;
      --site-padding-x: 20px;
      --gutter: 20px;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    /* this is where you'll do most of the customization! */

      body {
  font-family: 'MS PGothic', monospace;
  font-size: 16px;

  background-color: #b3c4ff;
  background-image: url('https://wallpapercave.com/wp/wp5250027.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  color: #000;
}

    /* scrollbar */
    ::-webkit-scrollbar {
      width: 15px;
    }

    ::-webkit-scrollbar-track {
      background: #e9ecef;
      border-radius: 6px;
      background-image: url("https://files.catbox.moe/7gavvp.png");
    }

    ::-webkit-scrollbar-thumb {
      background: #ac90d133;
      border-radius: 6px;
      border: 2px solid #e9ecef;
    }

    ::-webkit-scrollbar-thumb:hover {
      background: #c8ace333;
    }


    .container {
      max-width: var(--site-max-width);
      margin: 0 auto;
      padding: 0 var(--site-padding-x);
    }

    header.header {
      margin: 10px 0;
      display: block;
    }

    .header-panel {
      background: rgba(141, 125, 190, 0.25);
      padding: 8px 15px;
      border-bottom: 1px solid #b5cde5;
      font-weight: bold;
      border-radius: 16px;
      color: white;
      border: 1px solid rgba(214, 153, 196, 0.32);
      box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
      backdrop-filter: blur(8.1px);
      background-image: url("https://files.catbox.moe/7gavvp.png");
      font-family: 'MS PGothic', monospace;
      font-size: 16px;
    }

    .logo {
      color: white;
      font-size: 24px;
      font-weight: bold;
      margin-bottom: 10px;
      font-family: 'Noto Sans Japanese', bold;
      font-size: 25px;
    }

    .navbar {
      background: rgba(255, 255, 255, 0.9);
      padding: 8px 12px;
      border-radius: 10px;
    }

    .navbar a {
      color: #0048bd;
      text-decoration: none;
      margin-right: 15px;
      padding: 4px 8px;
      border-radius: 3px;
      transition: background-color 0.2s;
      font-weight: bold;
    }

    .navbar a:hover {
      background-color: #e8f2f8;
      color: #4a6c8a;
      font-weight: bold;
      font-size: 18px;
    }

    .main-container {
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: var(--gutter);
      margin: 20px auto 0 auto;
    }

    .content-section {
      background: white;
      margin-bottom: 15px;
      padding: 8px 15px;
      border-bottom: 1px solid #b5cde5;
      border-radius: 16px;
      border: 1px solid rgba(214, 153, 196, 0.32);
      box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
      backdrop-filter: blur(8.1px);
      font-family: 'MS PGothic', monospace;
      font-size: 16px;

    }

    .section-header {
      background: rgba(141, 125, 190, 0.25);
      padding: 8px 15px;
      border-bottom: 1px solid #b5cde5;
      font-weight: bold;
      border: 1px solid rgba(214, 153, 196, 0.32);
      box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
      backdrop-filter: blur(8.1px);
      background-image: url("https://files.catbox.moe/7gavvp.png");
      border-radius: 16px;
      color: #0867c7;
    }
    
    .window-buttons {
  position: absolute;
  right: 7px;
  top: 6px;
  display: flex;
  gap: 5px;
}

.dot {
  width: 10px;
  height: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  border: 1px solid rgba(255,255,255,1);
  cursor: pointer;
}

.dot.minimize {background: #D6B4FC;}

.dot.maximize {background: #D3C2CF;}

.dot.close {background: #DAB1DA;}

.dot:hover {filter: brightness(1.2);}

    .section-content {
      padding: 15px;

      overflow-y: auto;
      line-height: 1.5;
    }

    .section-content p {
      margin-bottom: 12px;
    }

    .section-content p:last-child {
      margin-bottom: 0;
    }

    .section-content ul {
      list-style-image: url('https://pixelsafari.neocities.org/favicon/animals/ungulate/sheep6.gif');
      padding-left: 26px;
      margin-bottom: 0;
    }

    .section-content li {
      margin-bottom: 8px;
      color: #011d4a;
    }

    .section-content li strong {
      color: #00138f;
    }

    .section-content a {
      text-decoration: none;
      color: #0059b3;
    }

    .section-content a:hover {
      text-decoration: underline;
    }

    .img-left {
      float: left;
      margin: 0 15px 10px 0;
      max-width: 150px;
      height: auto;
    }

    .img-right {
      float: right;
      margin: 0 0 10px 15px;
      max-width: 150px;
      height: auto;
    }

    .img-center {
      display: block;
      margin: 10px auto;
      max-width: 100%;
      height: auto;
    }

    .section-content::after {
      content: "";
      display: table;
      clear: both;
    }

    .main-content {
      display: flex;
      flex-direction: column;
      height: fit-content;
    }

    .sidebar {
      display: flex;
      flex-direction: column;
    }

    .sidebar .section-content {
      max-height: 170px;
    }

    .button-section {
      background: white;
      margin-bottom: 15px;
      padding: 8px 15px;
      border-bottom: 1px solid #b5cde5;
      border-radius: 16px;
      border: 1px solid rgba(214, 153, 196, 0.32);
      box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
      backdrop-filter: blur(8.1px);
      font-family: 'MS PGothic', monospace;
      font-size: 16px;
    }

    .button-section .section-header {
      padding: 8px 15px;
    }

    .button-content {
      padding: 15px;
    }

    .button-area {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      margin-top: 10px;
    }

    .site-button {
      width: 88px;
      height: 31px;
      border-radius: 16px;
      flex-shrink: 0;
    }

    .button-code {
      flex: 1;
      width: 100%;
      height: 60px;
      font-family: 'MS PGothic', monospace;
      font-size: 11px;
      border: 1px solid #ccc;
      border-radius: 16px;
      padding: 5px;
      resize: vertical;
    }

    footer.footer {
      margin: 20px 0 10px 0;
      display: block;
    }

    .footer-panel {
      background: rgba(141, 125, 190, 0.25);
      padding: 8px 15px;
      border-bottom: 1px solid #b5cde5;
      font-weight: bold;
      border: 1px solid rgba(214, 153, 196, 0.32);
      box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
      backdrop-filter: blur(8.1px);
      background-image: url("https://files.catbox.moe/7gavvp.png");
      border-radius: 16px;

      text-align: center;
      border-top: 1px solid #e0e0e0;
      font-size: 12px;
      color: white;
    }

    /* this is to make it mobile friendly. uhh idk what i'm doing with this let me know it it does work */

    @media (max-width: 768px) {
      :root {
        --site-padding-x: 10px;
      }

      .main-container {
        grid-template-columns: 1fr;
        gap: 12px;
        margin: 10px auto 0 auto;
      }

      header.header {
        margin: 10px 0;
      }

      footer.footer {
        margin: 30px 0 10px 0;
      }

      .navbar a {
        display: block;
        margin: 2px 0;
      }

      .button-area {
        flex-direction: column;
      }

      .main-content .content-section:last-child {
        height: auto;
      }

      .main-content .content-section:last-child .section-content {
        max-height: 200px;
      }

      .img-left,
      .img-right {
        float: none;
        display: block;
        margin: 10px auto;
      }
    }