.absolute {


    position: absolute;
    top: 200px;
    inset: 85px;
    margin: 0vw 0vw 0vw -10vw;
    justify-content: center;
    z-index: -1;
    display: inline-flex;

    flex-direction: row;

}




.justify-center {

    justify-content: center;

}



.bg-shape2 {
    width: 30vw;
    height: 30vw;
    border-radius: 9999px;
    position: relative;
    animation: two 5s infinite;
}

.bg-shape3 {
    width: 30vw;
    height: 30vw;
    border-radius: 9999px;
    position: relative;
    animation: three 5s infinite;
}

@keyframes three {
    0% {
        left: 0px;
        top: 0px;
    }

    25% {
        left: -100px;
        top: 0px;
    }

    50% {
        left: 100px;
        top: 0px;
    }

    75% {
        left: 50px;
        top: 0px;
    }

    100% {
        left: 0px;
        top: 0px;
    }
}

@keyframes two {
    0% {
        left: 0px;
        top: 0px;
    }

    25% {
        left: 100px;
        top: 0px;
    }

    50% {
        left: -100px;
        top: 0px;
    }

    75% {
        left: -50px;
        top: 0px;
    }

    100% {
        left: 0px;
        top: 0px;
    }
}



.opacity-50 {
    opacity: .4;
}

.bg-blur {
    filter: blur(100px);
}

.bg-primary {
    background-color: rgb(255, 0, 43);
}

.bg-teal {
    background-color: rgb(0, 156, 247);
}

.bg-purple {
    background-color: rgb(140, 0, 215);
}


@media(max-width:430px) {

    .opacity-50 {
        opacity: 20;
    }

    .bg-blur {
        filter: blur(70px);
    }
}