:root {
    --asymptotic-ease: linear(0, 0.4 10%, 0.7 20%, 0.85 30%, 0.92 40%,
            0.95 50%, 0.97 60%, 0.985 70%, 0.992 80%,
            0.996 90%, 1);
}

body {
    background-color: black;
    font-family: "DM Sans";
    margin: 0;
}

#hero {
    width: 100%;
    min-height: 80dvh;
    overflow: hidden;
}

.stackc {
    display: grid;
    width: 100%;
    min-height: inherit;
}

.hero-background,
.hero-foreground {
    grid-area: 1 / 1;
}

.hero-background {
    position: relative;
    background-color: #111;
}

.hero-foreground {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.hero-item {
    position: absolute;
    transform: translate(-50%, -50%);
    animation-fill-mode: forwards;
    animation-timing-function: var(--asymptotic-ease);
    animation-duration: 10s;
}

.animated-blob {
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, #ff00cc, #3333ff);
    border-radius: 50%;
    animation-name: float;
}

@keyframes float {
    0% {
        /* Explicit parent coordinates */
        left: 50%;
        top: 50%;
    }

    100% {
        /* Explicit parent coordinates */
        left: 80%;
        top: 70%;
    }
}