@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');
*{
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}
html, body {
    min-width: 320px;
}
body {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 85vh;
    background-color: #1E2230;
}
main{
    display: flex;
    flex-direction: column;
}
main .title {
    color: #fff;
    font-size: 6.5vh;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.title span{
    color: #5573D9;
}
.css-typing p {
    border-right: .15em solid #0E215E;
    color: #5573D9;
    font-size: 3.5vh;
    white-space: nowrap;
    overflow: hidden;
  }
  .css-typing p:nth-child(1) {
    width: 100%;
    height: 100%;
    margin-left: 10px;
    margin-right: 10px;
    -webkit-animation: type 2s steps(40, end);
    animation: type 2s steps(40, end);
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
  }
  
  .css-typing p:nth-child(2) {
    width: 100%;
    height: 100%;
    margin-left: 10px;
    margin-right: 10px;
    opacity: 0;
    -webkit-animation: type2 2s steps(40, end);
    animation: type2 2s steps(40, end);
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
  }  
  @keyframes type {
    0% {
      width: 0;
    }
    99.9% {
      border-right: .15em solid #0E215E;
    }
    100% {
      border: none;
    }
  }
  
  @-webkit-keyframes type {
    0% {
      width: 0;
    }
    99.9% {
      border-right: .15em solid #0E215E;
    }
    100% {
      border: none;
    }
  }
  
  @keyframes type2 {
    0% {
      width: 0;
    }
    1% {
      opacity: 1;
    }
    99.9% {
      border-right: .15em solid #0E215E;
    }
    100% {
      opacity: 1;
      border: none;
    }
  }
  
  @-webkit-keyframes type2 {
    0% {
      width: 0;
    }
    1% {
      opacity: 1;
    }
    99.9% {
      border-right: .15em solid #0E215E;
    }
    100% {
      opacity: 1;
      border: none;
    }
  }
