/* Global */
html, body  {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
}
*   {
    margin: 0;
    padding: 0;
}
.container-fluid    {
    height: 100%;
    width: 100%;
}
/* Coming Soon */
.container-fluid {
    background-image: url(https://images5.alphacoders.com/880/thumb-1920-880175.jpg);
    background-size: cover;
    background-repeat: no-repeat repeat;
}
.row  {
    position: relative;
    top: 45%;
    width: 100%;
    background-color: rgba(255, 0, 0, 0);
    margin: 0 auto;
}
.cs {
    width: 100%;
    background-color: rgba(255, 105, 180, 0);
    font-size: 3rem;
    font-family: monospace;
    font-weight: bold;
    color: rgb(0, 174, 255);
    text-shadow: 0px 5px 5px rgb(255, 0, 234);
    overflow: hidden; /* Ensures the content is not revealed until the animation */
    border-right: .20em solid rgb(255, 255, 255); /* The typwriter cursor */
    white-space: nowrap; /* Keeps the content on a single line */
    margin: 0 auto; /* Gives that scrolling effect as the typing happens */
    letter-spacing: .1em; /* Adjust as needed */
    animation: 
      typing 2s steps(14, end),
      blink-caret .75s step-end infinite;
  }
  
  /* The typing effect */
  @keyframes typing {
    from { width: 0 }
    to { width: 100% }
  }
  
  /* The typewriter cursor effect */
  @keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: rgb(255, 255, 255); }
  }