body { 
    margin: 0; /* Sanırım kodları merak ediyorsun, CSS anlamadığım için hatalar olabilir... */
    padding: 15px 20px; /* burada olmaman senin için daha iyi. */
    min-height: 99%;
    width: 100%;
    min-width: 550px;
    color: #aaaaaa;
    background: #0a0924;
    font-family: monospace; 
    overflow-x: hidden;
    font-size: 14px;
  }
  
  ::selection {
    color: #0000ff;
    background-color: #519975;
  }
  
  ::-moz-selection {
    color: #0000ff;
    background-color: #519975;
  }
  
  textarea {
    opacity: 0; /* Text girilmesi gereken yerin görünmez olması için */
    position: absolute; 
    left: 0; 
    top: 0; 
    width: 600px; /* Daha büyük yapıldı */
    height: 200px; /* Daha büyük yapıldı */
    overflow: hidden;
    z-index: -1;
    resize: none;
    pointer-events: none; /* Tıklama yasağı getir */
    margin: -9999px; /* Ekranın en uzak köşesine alındı */
    font-size: 20px;
  }
  
  b {
    font-weight: bold;
    text-decoration: underline;
    font-size: 1.1em;
  }
  
  .cursor {
    font-size: 16px;
    color: #aaaaaa;
    background-color: #73ABAD;
    position: relative;
    opacity: 1;
    height: 1.5em;
    width: 10px;
    max-width: 10px;
    transform: translateY(4px);
    overflow: hidden;
    text-indent: -5px;
    display: inline-block;
    text-decoration: blink;
    animation: blinker 1s linear infinite;
  }
  
  @keyframes blinker {
    50% {
      opacity: 0;
    }
  }
  
  #command {
    cursor: text;
    height: 50px;
    color: #818ada;
    font-size: 1.1em;
  }
  
  #liner {
    line-height: 1.4em; 
    margin-top: -2px;
    animation: show 0.5s ease forwards;
    animation-delay: 1.2s;
    opacity: 0;
  }
  
  #liner::before {
    color: #98FF98;
    content: "misafir@kodes.space:~₺"; /* misafir için isim önerisi lazım */
    font-size: 1.1em;
  }
  
  #liner.password::before {
    content: "Şifre:";
    font-size: 1.1em; 
  }
  
  @keyframes show {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  p {
    display: block;
    line-height: 1.4em;
    margin: 0;
    overflow: hidden;
    white-space: nowrap;
    letter-spacing: 0.05em;
    animation: typing 0.5s steps(30, end);
    font-size: 1.1em;
  }
  
  .no-animation {
    animation: typing 0 steps(30, end);
  }
  
  .margin {
    margin-left: 20px;
  }
  
  @keyframes typing {
    from {
      width: 0;
    }
    to {
      width: 100%;
    }
  }
  
  .index {
    color: #aaaaaa;
    font-size: 1.1em;
  }
  
  .color2 {
    color: #ff0000;
    font-size: 1.1em;
  }
  
  .command {
    color: #ffffff;
    text-shadow: 0 0 5px #aaaaaa;
    font-size: 1.1em; 
  }
  
  .error {
    color: #BE3455;
    font-size: 1.1em;
  }
  
  .white {
    color: #fff;
    font-size: 1.1em;
  }
  
  .inherit,
  a {
    color: #deadad;
    font-size: 1.1em;
  }
  
  a {
    text-decoration: inherit;
  }
  
  a:hover {
    background: #aaaaaa;
    color: #aaaaaa;
  }
  
  a:focus {
    outline: 0;

 .logo {
  width: 80px;
  height: 80px;
  background-image: url("/logo.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

  }
  
