
    
    /* Fonts, I recommend downloading these to your own web host. */

    @font-face {
      font-family: "rainy";
      src: url("https://files.catbox.moe/r4oudq.ttf");
    }

    @font-face {
      font-family: "pixel";
      src: url("https://files.catbox.moe/i1y2x0.woff");
    }


    /* Basics */

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      padding: 20px;
      background: url("images/bg2.jpg");
      font-family: "rainy", calibri, verdana, arial;
      font-size: 14px;
      line-height: 16px;
      letter-spacing: 1px;
      text-align: left;
      text-shadow: 0 0 1px #ddd1bc;
      color: #000000;
    }

    a {
      color: #6698cc;
      text-decoration: none;
      transition: 0.2s ease;
    }

    a:hover {
      color: #ffde4d;
      text-shadow: 0 0 4px #ffe2ee;
    }

    a:active {
      color: #6698cc;
    }

    b {
      font-weight: bold;
      color: #000000;
    }

    i {
      color: #000000;
    }

   


    /* Scrollbar */

    ::-webkit-scrollbar {
      width: 10px;
    }

    ::-webkit-scrollbar-track {
      background: #fff8ee;
    }

    ::-webkit-scrollbar-thumb {
      background: #d8e7ad;
      border: 2px solid #fff8ee;
      border-radius: 5px;
    }

    ::-webkit-scrollbar-thumb:hover {
      background: #e4b989;
    }


    /* Container */

    .layout {
      max-width: 722px;
      margin: 40px auto;
      overflow: hidden;
      background: #fffdf8;
      border: 5px dotted #d7ab7d;
      border-radius: 15px;
    }


    /* Top decoration */

    .lace {
      height: 45px;
      background:
        linear-gradient(to bottom, rgba(255,255,255,0.45), rgba(255,226,238,0.18)),
        #fffdf8 url("images/navpic.jpg") repeat-x;
      border-top-left-radius: 15px;
      border-top-right-radius: 15px;
    }


    /* Navi */

    .navigation {
      padding: 7px 7px 0;
      background: linear-gradient(to bottom, #fffdf8, #fff3f7);
      border-top: 1px dotted #3c6396;
      border-bottom: 1px solid #3c6396;
      box-shadow:
        inset 0 1px 0 #ffffff,
        inset 0 -1px 0 rgba(216,231,173,0.45);
    }

    .navi-link {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 6px;
    }

    .navi-link a {
      flex: 1 1 0;
      position: relative;
      bottom: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 4px;
      min-width: 0;
      padding: 4px 7px 2px;
      background: linear-gradient(to bottom, #ffffff 0%, #fff7ec 48%, #f9e8d3 100%);
      border: 1px dotted #e8c99f;
      border-bottom: 1px solid #76a1f1;
      border-radius: 9px 9px 0 0;
      box-shadow:
        inset 1px 1px 0 #76a1f1,
        inset -1px 0 0 #76a1f1,
        1px 0 0 rgba(255, 255, 255, 0.5);
      font-family: "Silkscreen", monospace;
      font-size: 10px;
      font-weight: normal;
      line-height: 14px;
      letter-spacing: 1px;
      text-align: center;
      white-space: nowrap;
      color: #000000;
      text-shadow: 0 1px 0 #5c5c5c;
      transition: 0.22s ease;
    }

    .navi-link a::before {
      content: "";
      position: absolute;
      left: 5px;
      right: 5px;
      top: 3px;
      height: 1px;
      background: rgba(255,255,255,0.95);
    }

    .navi-link a:hover {
      border-color: #76a1f1;
      border-bottom-color: #76a1f1;
      transform: translateY(-2px);
      z-index: 3;
    }

    .nav-icon {
      margin-right: 4px;
      opacity: 0.55;
      transition: 0.22s ease;
    }

    .navi-link a:hover .nav-icon {
      opacity: 1;
      transform: rotate(-8deg);
    }


    /* Banner */

    .banner {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      height: 150px;
      background: url("images/bannerpic.png") center;
      background-size: cover;
      border-bottom: 1px dotted #b4b534;
    }

    .banner::before {
      content: "";
      position: absolute;
      left: 12px;
      right: 12px;
      top: 12px;
      bottom: 12px;
      border-radius: 18px;
      pointer-events: none;
      
    }

    .banner::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: 100%;
      
    }
    
    
    /* Site name */


    .site-name {
      position: relative;
      z-index: 2;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      padding: 10px 45px 12px;
      font-family: "ronda", pixel, sans-serif;
      font-size: 24px;
      letter-spacing: 3px;
      text-align: center;
      text-transform: lowercase;
      color: #000000;
      text-shadow:
        0 1px 0 #ffffff,
        0 0 8px rgba(255,255,255,0.9),
        0 0 12px rgba(255,226,238,0.7);
    }

    .site-name::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
      background: linear-gradient(
        to right,
        rgba(255,255,255,0),
        rgba(255,255,255,0.65) 18%,
        rgba(255, 255, 255, 0.92) 50%,
        rgba(255,255,255,0.65) 82%,
        rgba(255,255,255,0)
      );
      border-top: 1px dotted #b4b534;
      border-bottom: 1px dotted #b4b534;
      filter: blur(0.2px);
    }

    .site-sparkle {
      opacity: 0.5;
    }


    /* Main columns */

    .main {
      display: grid;
      grid-template-columns: 2.2fr 1fr;
      gap: 1px;
      background: #eef7d9;
      border-bottom: 1px solid #ffde4d;
    }

    .column {
      min-width: 0;
      padding: 8px;
      background: linear-gradient(to bottom, #ffffff, #76a1f1);
    }

    .column:first-child {
      background: #76a1f1;
    }

    .column:last-child {
      background: linear-gradient(to bottom, #ffffff, #76a1f1);
      border-left: 1px dotted #b4b534;
    }


    /* Sections */

    .box {
      margin-bottom: 8px;
      padding: 6px;
      background: white;
      border: 1px solid #b4b534;
      border-radius: 8px;
      justify-content: center;
    }

    .box:last-child {
      margin-bottom: 0;
    }

    .box p {
      margin: 0 0 7px;
      
    }


    .box p:last-child {

      margin-bottom: 0;
     
    }

    .intro-pixel {
      float: center;
      margin: 0 7px 7px 0;
      width: 460px;
      object-fit: cover;
      border: 5px dotted #6698cc;
      border-radius: 15px;
    }

    /* Tama and buttons */
    .tama {
      display: flex;
      justify-content: center; /* Horizontal center */
      align-items: center; /* Vertical center */
      
    }
    
    .tama img {
    max-width: 100%;
    height: auto; 
    padding: 10px;
      
    }

    .buttons {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: .5rem;
    justify-content: center;
    align-items: center;

    }


    /* Titles */

    .title {
      margin-bottom: 5px;
      padding: 3px 5px;
      background: #ffde4d;
      border-radius: 10px;
      font-family: "Gaegu", arial;
      font-size: 15px;
      line-height: 12px;
      letter-spacing: 1px;
      text-transform: lowercase;
      color: #000000;
      text-align: center;
    }

    .title-big {
      margin-bottom: 6px;
      padding: 4px 6px 3px;
      background: #ffde4d;
      border-radius: 10px;
      font-family: "Gaegu", arial;
      font-size: 17px;
      line-height: 13px;
      letter-spacing: 2px;
      text-align: center;
      text-transform: lowercase;
      color: #000000;
    }


    /* Notes and Lists */

    .note {
      margin-top: 6px;
      padding: 5px;
      border-left: 3px solid #6698cc;
      border-radius: 0 6px 6px 0;
      font-size: 13px;
      line-height: 15px;
      color: #6698cc;
    }

    .tiny-list {
      margin: 5px 0 0;
      padding: 0;
      list-style: none;
    }

    .tiny-list li {
      padding: 2px 0;
      border-bottom: 1px dotted #b4b534;
      color: #000000;
    }

    .list-icon {
      opacity: 0.5;
    }


    /* Mini boxes */

    .mini-boxes {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5px;
      margin-top: 7px;
    }

    .mini-box {
      padding: 5px;
      border: 1px dotted #b4b534;
      border-radius: 7px;
      font-size: 13px;
      text-align: center;
      color: #000000;
    }


    /* Miniblog / updates */

    .miniblog {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .mini-post {
      display: grid;
      grid-template-columns: 45px 1fr;
      gap: 7px;
      align-items: start;
      padding: 5px;
      background: #fffdf8;
      border: 1px dotted #b4b534;
      border-radius: 8px;
      
    }

    .mini-post img {
      width: 45px;
      height: 45px;
      object-fit: cover;
      border: 1px solid #6698cc;
      border-radius: 7px;
      opacity: 0.9;
      filter: saturate(0.9) brightness(1.04);
    }

    .mini-post-content {
      min-width: 0;
    }

    .mini-post-title {
      display: block;
      margin-bottom: 2px;
      font-family: "Gaegu", "ronda", cursive;
      font-size: 15px;
      line-height: 14px;
      letter-spacing: 1px;
      color: #6698cc;
    }

    .mini-post-meta {
      display: block;
      margin-bottom: 3px;
      font-size: 13px;
      color: #b4b534;
      opacity: 0.95;
    }

    .mini-post-text {
      line-height: 14px;
      color: #000000;
    }


    /* Footer */

    .footer {
      padding: 8px;
      border-top: 1px dotted #ffde4d;
      border-bottom-left-radius: 10px;
      border-bottom-right-radius: 10px;
      box-shadow:
        inset 0 1px 0 #ffffff,
        inset 0 0 8px rgba(222,240,189,0.65);
      line-height: 14px;
      letter-spacing: 1px;
      text-align: center;
      color: #000000;
    }

    .footer a {
      color: #6698cc;
      border-bottom: 1px dotted #b4b534;
    }

    .footer a:hover {
      color: #ffde4d;
      text-shadow: 0 0 4px #ffffff;
    }


    /* Responsiveness */

    @media (max-width: 768px) {
      body {
        padding: 10px;
      }

      .layout {
        margin: 20px auto;
      }

      .main {
        grid-template-columns: 1fr;
      }

      .column:last-child {
        border-left: 0;
        border-top: 1px dotted #b4b534;
      }

      .navigation {
        padding-bottom: 7px;
      }

      .navi-link {
        flex-wrap: wrap;
        align-items: stretch;
      }

      .navi-link a {
        flex: 1 1 calc(50% - 6px);
        border: 1px dotted #b4b534;
        border-radius: 8px;
        padding: 5px 7px 4px;
      }

      .navi-link a::before {
        display: none;
      }

      .banner {
        height: 130px;
      }

      .site-name {
        padding: 8px 14px 10px;
        font-size: 18px;
        line-height: 20px;
      }
    }

