body {
    background: #353340;
    display: grid;
    place-items: center;
    min-height: 100vh;
  }
  
  .prompt {
    margin: 0px;
    font-size: 15px;
  }
  .zielen {
    color: rgb(30, 255, 0);
  }
  .kierunek {
    font-size: 13px;
    animation: 1s kierunkowskaz infinite;
  }
  
  .link {
    color: rgb(30, 255, 0);
  }
  
  .terminal-window {
    text-align: left;
    width: 600px;
    height: 360px;
    border-radius: 10px 10px 0 0;
    position: relative;
    box-shadow: 0 0 5px 1px rgb(40, 42, 54);
    margin: 0 auto;
  }
  
  .terminal-header {
    background: #e0e8f0;
    height: 30px;
    border-radius: 8px 8px 0 0;
    padding-left: 10px;
  }
  
  .terminal-button {
    width: 12px;
    height: 12px;
    margin: 10px 4px 0 0;
    display: inline-block;
    border-radius: 50%;
  }
  
  .green {
    background: #3bb662;
  }
  
  .yellow {
    background: #e5c30f;
  }
  
  .red {
    background: #e75448;
  }
  
  .terminal-body {
    color: white;
    font-family: Menlo, Monaco, "Consolas", monospace, "Courier New", "Courier";
    font-size: 11pt;
    background: #30353a;
    opacity: 0.9;
    padding: 10px;
    box-sizing: border-box;
    position: absolute;
    width: 100%;
    top: 30px;
    bottom: 0;
    overflow: auto;
  }
  
  @keyframes kierunkowskaz {
    0% {
      opacity: 0;
    }
  
    50% {
      opacity: 1;
    }
  
    100% {
      opacity: 0;
    }
  }
  