body {
    background-color: #000000;
    overflow: hidden;
  }
  
  .star {
    position: absolute;
    width: 2px;
    height: 2px;
    border-radius: 50%;
    background-color: #fff;
    animation: twinkle 1s infinite var(--delay);
    --delay: 15s;
  }
  
  @keyframes twinkle {
    0% {
      opacity: 1;
    }
    50% {
      opacity: 0.5;
    }
    100% {
      opacity: 1;
    }
  }
  
  .text {
    position: absolute;
    font-size: 5rem;
    color: #FFFFFF;
    transform: translateZ(0);
    transition: transform 0.5s ease-out;
  }
  
  .text:hover {
    transform: rotateX(var(--ty)) rotateY(var(--tx));
  }
  
  /* set the custom properties for the mouse coordinates */
  :root {
    --x: 0;
    --y: 0;
    --tx: 0;
    --ty: 0;
  }

  .terminal {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 400px;
    background-color: #000;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    font-family: "Courier New", Courier, monospace;
    font-size: 14px;
    color: #fff;
  }
  
  .terminal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: #1c1c1c;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    cursor: move;
  }
  
  .terminal-title {
    font-weight: bold;
  }
  
  .terminal-buttons {
    display: flex;
  }
  
  .terminal-button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 10px;
    cursor: pointer;
  }
  
  .terminal-button.close {
    background-color: #ff5f57;
  }
  
  .terminal-button.minimize {
    background-color: #ffbd2e;
  }
  
  .terminal-button.maximize {
    background-color: #28c940;
  }
  
  .terminal-body {
    height: calc(100% - 60px);
    padding: 10px;
    overflow-y: auto;
    user-select: none;
  }
  
  .terminal-prompt {
    display: inline-block;
    margin-right: 5px;
  }
  
  .terminal-cursor {
    display: inline-block;
    width: 5px;
    height: 14px;
    margin-bottom: -3px;
    background-color: #fff;
    animation: blink 1s infinite;
  }
  
  .terminal-input {
    background-color: transparent;
    border: none;
    outline: none;
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    width: calc(100% - 20px);
  }
  
  @keyframes blink {
    50% {
      opacity: 0;
    }
  }
  
  
  