@import url('https://fonts.googleapis.com/css2?family=Ubuntu+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap');
body,html{
  font-family: 'Ubuntu Mono', monospace;
  margin:0;
  padding:0;
  padding-top:0vh;
  background: #000;
}

.wrapper {
  height: 100vh;
  /*This part is important for centering*/
  display: grid;
  place-items: center;
}
body h1 {
    position: relative;
    display: block;
    margin: 0;
    text-align: left;
    color: red;
    font-family: monospace;
    font-size: 13px;
    line-height: 19px;
    max-width: 720px;
    margin-left: 35px;
}
body h1:before{
   content: ">> ";
}
#yazkizim:before{
   content: "# ";
}
#saniye {
    position: fixed;
    right: 16px;
    color: red;
    top: 3px;
}
.typing {
  width: 100%;
  animation: typing 2s steps(100), blink 0.5s step-end infinite alternate;
  white-space: nowrap;
  overflow: hidden;
  border-right: 3px solid;
  font-family: monospace;
  font-size: 2em;
}
.typeanimate{
  animation: typing 2s, blink 0.5s step-end infinite alternate;
}
.cursor:after {
    content:"_";
    opacity: 0;
    animation: cursor 1s infinite;
}
ul {
    margin: 0;
    padding: 0;
    margin: 0;
    margin-left: 40px;
    margin-bottom: 20px;
}
ul li{
  position: relative;
    display: block;
    margin: 0;
    text-align: left;
    color: red;
    font-family: monospace;
    font-size: 13px;
    line-height: 19px;
    max-width: 720px;
}
ul li:before{
  content: ">> ";
}
@keyframes cursor {
    0% {
        opacity: 0;
    }
    40% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
#yazkizim {
    background: #000000;
    color: #545454;
    position: fixed;
    width: 100%;
    bottom: 0;
    padding-left: 22px;
    padding-bottom: 17px;
    font-size:12px;
}
@keyframes typing {
  from {
    width: 0;
  }
}

@keyframes blink {
  50% {
    border-color: transparent;
  }
}
