* {
    margin: 0;
    padding: 0;
}

body {
    background-color: #0c192c;
    display: flex;
    justify-content: center;
    margin-left: 50%;
    margin-top: 2%;
    overflow: hidden;
}

.zaglavietext {
    position: relative;
    padding-bottom: 1%;
    margin-top: 2%;
    justify-content: center;
    z-index: 0;
}

.zaglavietext h2 {
    position: absolute;
    color: #fff;
    text-shadow: -10px -10px 90px rgba(0, 0, 0, 0.5);
    transform: translate(-50%, -50%);
    font-size: 58px;
    white-space: nowrap;
}


.zaglavietext h2:nth-child(1) {
    z-index: 2;
    color: transparent;
    -webkit-text-stroke: 2px #c7d8e1;
    text-shadow: -10px 10px 90px #f20044;

}

.zaglavietext h2:nth-child(2) {
    z-index: 3;
    color: #f20044;
    animation: animate 4s ease-in-out infinite;
}

@keyframes animate {

    0%,
    100% {
        clip-path: polygon(0% 32%, 12% 32%, 19% 50%, 26% 60%, 38% 66%, 52% 61%, 66% 59%, 72% 49%, 78% 41%, 91% 32%, 100% 32%, 100% 100%, 0% 100%, 0 78%, 0 65%);
    }

    50% {
        clip-path: polygon(0 70%, 14% 72%, 22% 68%, 30% 52%, 41% 47%, 54% 45%, 64% 49%, 72% 53%, 86% 59%, 95% 64%, 100% 75%, 100% 100%, 0% 100%, 0 78%, 0 65%);
    }
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -50%;
    z-index: 1;
    margin-left: -5%;
}

.heart {
    height: 70px;
    width: 70px;
    background: #f20044;
    position: relative;
    transform: rotate(-45deg);
    box-shadow: -10px 10px 90px #f20044;
    animation: heart 0.6s linear infinite;
}

@keyframes heart {
    0% {
        transform: rotate(-45deg) scale(1.7);
    }

    80% {
        transform: rotate(-45deg) scale(1.0);
    }

    100% {
        transform: rotate(-45deg) scale(0.8);
    }
}

.heart::before {
    content: '';
    position: absolute;
    height: 70px;
    width: 70px;
    background: #f20044;
    top: -50%;
    border-radius: 50px;
    box-shadow: -10px -10px 90px #f20044;

}

.heart::after {
    content: '';
    position: absolute;
    height: 70px;
    width: 70px;
    background: #f20044;
    right: -50%;
    border-radius: 50px;
    box-shadow: 10px 10px 90px #f20044;
}

.meme {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: -10;
    margin-top: -5%;
    margin-left: -135%;
    width: 800%;
}

.bubbles {
    position: relative;
    display: flex;
}

.bubbles span {
    position: relative;
    width: 30px;
    height: 30px;
    background: #4fc3dc;
    margin: 0 4px;
    border-radius: 50%;
    box-shadow: 0 0 0 10px #4fc3dc44,
        0 0 50px #4fc3dc,
        0 0 100px #4fc3dc;
    animation: animation 15s linear infinite;
    animation-duration: calc(170s /var(--i));
}

.bubbles span:nth-child(even) {
    background: #ff2d75;
    box-shadow: 0 0 0 10px #ff2d7544,
        0 0 50px #ff2d75,
        0 0 100px #ff2d75;
}

@keyframes animation {
    0% {
        transform: translateY(100vh) scale(0);
    }

    100% {
        transform: translateY(-10vh) scale(1);
    }
}

img {
    margin-left: -35%;
    margin-top: 47%;
}