body {
    margin: 0;
    font-family: monospace;
    color: black;
    background-image: url("https://storage.ko-fi.com/cdn/useruploads/display/e3717363-e270-46b2-a72b-9692c7eea72e_clouds.gif");
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    display: flex;
  }
  
  /* Sidebar menu */
  .sidebar {
    width: 200px;
    padding: 2rem 1rem;
  }
  
  .sidebar ul {
    list-style-type: none;
    padding: 0;
  }
  
  .sidebar li {
    margin: 1rem 0;
  }
  
  .sidebar a {
    text-decoration: none;
    color: black;
    font-weight: bold;
    font-size: 1rem;
  }
  
  .sidebar a:hover {
    color: #555;
  }
  
  .main-content {
    flex-grow: 1;
    padding: 2rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .center-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  
  .content-inner {
    max-width: 600px;
    width: 100%;
  }
  
  .intro-box,
  .credits-box {
    width: 100%;
    padding: 2rem;
    font-size: 16px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
  }
  
  .credit-link {
    position: fixed;
    bottom: 10px;
    right: 10px;
    font-size: 12px;
    color: black;
    text-decoration: none;
    opacity: 0.4;
  }
  
  .credit-link:hover {
    opacity: 1;
  }
  
  .twitch-link {
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  
  .twitch-link a {
    text-decoration: none;
    color: black;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  
  .twitch-icon {
    width: 20px;
    height: 20px;
  }
  
  .fixed-chibi {
    width: 80px;
    height: auto;
    margin-bottom: 2rem;
  }
  