body,
      html {
        margin: 0;
        padding: 0;
        height: 100%;
        background-color: #000;
        color: #0f0;
        font-family: monospace;
        font-size: 16px;
        overflow: hidden;
      }
      .degauss-line {
        position: absolute;
        width: 100%;
        height: 2px;
        background: black;
        animation: degauss-line-animation 0.5s linear;
      }
      @keyframes degauss-line-animation {
        0%,
        100% {
          transform: translate(0, 0);
        }
        10% {
          transform: translate(5px, -5px) scale(1.1) rotate(1deg);
        }
        20% {
          transform: translate(-5px, 5px) scale(1.2) rotate(-1deg);
        }
        30% {
          transform: translate(5px, 5px) scale(1.3) rotate(2deg);
        }
        40% {
          transform: translate(-5px, -5px) scale(1.4) rotate(-2deg);
        }
        50% {
          transform: translate(5px, -5px) scale(1.5) rotate(3deg);
        }
        60% {
          transform: translate(-5px, 5px) scale(1.4) rotate(-3deg);
        }
        70% {
          transform: translate(5px, 5px) scale(1.3) rotate(2deg);
        }
        80% {
          transform: translate(-5px, -5px) scale(1.2) rotate(-1deg);
        }
        90% {
          transform: translate(5px, -5px) scale(1.1) rotate(1deg);
        }
      }
      .degauss {
        animation: degauss-animation 0.5s linear;
      }
      @keyframes degauss-animation {
        0%,
        100% {
          filter: none;
        }
        10% {
          filter: blur(2px) brightness(1.2) hue-rotate(36deg);
        }
        20% {
          filter: blur(4px) brightness(1.4) hue-rotate(72deg);
        }
        30% {
          filter: blur(6px) brightness(1.6) hue-rotate(108deg);
        }
        40% {
          filter: blur(8px) brightness(1.8) hue-rotate(144deg);
        }
        50% {
          filter: blur(10px) brightness(2) hue-rotate(180deg);
        }
        60% {
          filter: blur(8px) brightness(1.8) hue-rotate(216deg);
        }
        70% {
          filter: blur(6px) brightness(1.6) hue-rotate(252deg);
        }
        80% {
          filter: blur(4px) brightness(1.4) hue-rotate(288deg);
        }
        90% {
          filter: blur(2px) brightness(1.2) hue-rotate(324deg);
        }
      }
      #canvas-container {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }
    #terminal {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        color: #00ff00;
        font-family: 'Courier New', monospace;
        padding: 20px;
        box-sizing: border-box;
        overflow: auto;
        z-index: 2;
    }
      #input-line {
        display: flex;
        align-items: center;
      }
      #input-container {
        position: relative;
        flex-grow: 1;
      }
      #input {
        background-color: transparent;
        border: none;
        color: transparent;
        caret-color: transparent;
        font-family: monospace;
        font-size: 16px;
        width: 100%;
        outline: none;
        padding-left: 10px;
      }
      #input-display {
        position: absolute;
        top: 0;
        left: 10px;
        white-space: pre;
        color: #0f0;
      }
      .prompt::before {
        content: "visitor@saihtaM:~$ ";
      }
      .output {
        white-space: pre-wrap;
      }
      #cursor {
        width: 8px;
        height: 16px;
        background-color: #0f0;
        display: none;
        animation: blink 1s step-end infinite;
        position: absolute;
        top: 0;
        left: 10px;
      }
      @keyframes blink {
        50% {
          opacity: 0;
        }
      }