.zoom-clone {
    background:#05092E;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.8s cubic-bezier(0.77, 0, 0.175, 1);
  }
  
  .title-fly {
    position: fixed;
    z-index: 1000;
    opacity: 0;
    transform: translateY(40px);
    transition-property: opacity, transform;
    transition-duration: 0.9s, 1.5s;
    transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: 0.4s;
    width: 100vw;
  }
  .title-fly h1{
    color: #ffffff;
  }