html,
body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    height: 100%;
}

.blob-container {
    width: 100vw;
    height: 100vh;
    position: relative;
    filter: url(#goo);
    z-index: -0;
}

.blob {
    position: absolute;
    border-radius: 50%;
    animation: float 15s infinite ease-in-out;
    z-index: -0;
}

/* Aniamtion */
@keyframes float {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(var(--x), var(--y)) scale(var(--scale));
    }
}

/* SVG Filter für Gooey-Effekt */
svg {
    position: absolute;
    width: 0;
    height: 0;
}
