
  @import url('https://fonts.googleapis.com/css?family=Anonymous+Pro');

  /*body {
    margin: 0;
    padding: 0;
    background-color: #673ab7;
    font-family: 'Anonymous Pro', monospace;
    color: #fff;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
  }
*/
  /*.container {
    font-size: 30px;
    display: inline-block;
    position: relative;
  }*/

  /* Text styles and typing animation */
  .text{
/*    min-width: 100%;*/
  }
  .text span {
    font-size: 20px;

    display: none;
    opacity: 0;
    white-space: nowrap;
    width: 0;
    overflow: hidden;
    border-right: 2px solid rgba(255, 255, 255, 0.75); /* Cursor effect */
  }

  .text span.active {
    opacity: 1;
    width: 100%;
    animation: typewriter 3s steps(30) forwards, blinkingCursor 500ms steps(30) infinite;
  }

  /* Cursor blinking animation */
  @keyframes blinkingCursor {
    0%, 50% {
      border-right-color: rgba(255, 255, 255, 0.75);
    }
    50%, 100% {
      border-right-color: transparent;
    }
  }

  /* Typing animation effect */
  @keyframes typewriter {
    from { width: 0; }
    to { width: 100%; }
  }

  /* Backspace Deleting animation effect */
  @keyframes backspace {
    0% { width: 100%; }
    100% { width: 0; }
  }