
.splash-screen {
    position: fixed;
    top: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background: white;
    height: 100vh;
    width: 100vw;
    z-index: 2;
  }
  .splash-screen::after{
    content: "";
    position: absolute;
    top: 0;
    width: 100vw;
    height: 2px;
    background-color: #5c67ff;
    animation: afterEffect 3s 1;
    border-radius: 25px;
  }
  @keyframes afterEffect{
    from{
      width: 0;
    }
    to{
      width: 100vw;
    }
  }
  .splash-content{
    max-width: 500px;
    min-width: 300px;
    height: 90%;
    display: flex;
    margin: auto;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    padding: 50px 0;
    /* border: 1px solid red; */
  }
.brand-name{
  font-size: 50px;
  /* text-align: center; */
}
.splash-deal{
  font-size: 30px;
  text-align: center;
}
 .propel{
  color:#8000ff;
 }