.absolute {
    margin: 0;
    padding: 0;
    position: absolute;
    top: 200px !important;
    inset: 0;
    justify-content: center;
    display: inline-flex;
    flex-direction: row;
  }
  
  .justify-center {
    justify-content: center;
  }
  
  .bg-shape1 {
    width: 25%;
    height: 50%;
    border-radius: 9999px;
    position: relative;
    animation: one 4s infinite;
  }
  
  .bg-shape2 {
    width: 30%;
    height: 60%;
    border-radius: 9999px;
    animation: two 4s infinite;
  }
  
  @keyframes one {
    0%{left: 0px; top: 0px;}
    25%{left: -100px; top: 70px;}
    50%{left: 50px; top: 150px;}
    75%{left: 50px; top: 100px;}
    100%{left: 0px; top: 0px;}
  }
  
  @keyframes two {
    0%{left: 0px; top: 0px;}
    25%{left: 50px; top: 10px;}
    50%{left: 100px; top: 50px;}
    75%{left: 50px; top: 100px;}
    100%{left: 0px; top: 0px;}
  }
  
  .opacity-50 {
    opacity: .5;
  }
  
  .bg-blur {
    filter: blur(90px);
  }
  
  .bg-primary{
    background-color: rgb(0, 42, 255);
  }
  
  .bg-teal {
    background-color: rgb(140, 58, 241);
  }
  
  .bg-purple {
    background-color: rgb(252, 126, 0);
  }
  
  @media screen and (max-width: 900px) {
    .bg-shape1 {
      width: 25%;
      height: 50%;
      border-radius: 9999px;
      position: relative;
      animation: one 5s infinite;
    }
    
    .bg-shape2 {
      width: 30%;
      height: 60%;
      border-radius: 9999px;
      animation: two 5s infinite;
    }
  }