* {
    margin: 0;
    padding: 0;
}
body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}
h1 {
    font-family: "Incosolata", Consolas, monospace;
    font-size: 7em;
    color: #000000;
    white-space: nowrap;
    overflow: hidden;
    animation: typing 4s steps(200, end) infinite alternate,
               blink-caret 0.75s step-end infinite;
}
@keyframes typing {
    from { 
        width: 0;
    }
    to { 
        width: 53%;
    }
}
@keyframes blink-caret {
    from, to { 
        border-color: transparent; 
    }
    53% { 
        border-color: #240000;
    }
}
#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


@media (width < 1200px) {

    .typewriter {
      font-size: 8vw;
      box-sizing: border-box;
    } 
  
  }

  
