@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

* {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #000;
}

.content {
    position: relative;    
}

.content h2 {
    position: absolute;
    /* color: #fff; */
    transform: translate(-50%,-50%);
    font-size: 8em;
}

.content h2:nth-child(1) {
    color: transparent;
    -webkit-text-stroke: 2px #03a9f4;
}

.content h2:nth-child(2) {
    color: #03a9f4;
    /* -webkit-text-stroke: 2px #03a9f4; */
    animation: animate 4s ease-in-out infinite;
}

@keyframes animate {
    0%,100% {
        clip-path: polygon(0 56%, 4% 41%, 15% 31%, 24% 24%, 34% 27%, 41% 35%, 49% 52%, 55% 69%, 68% 81%, 76% 84%, 85% 84%, 93% 80%, 100% 75%, 100% 99%, 1% 100%);
    }
    50% {
        clip-path: polygon(0 69%, 9% 77%, 18% 78%, 26% 78%, 37% 69%, 44% 60%, 54% 49%, 61% 44%, 69% 39%, 76% 36%, 85% 37%, 91% 39%, 100% 45%, 100% 99%, 1% 100%);
    }
}