/**
 * Metaballs WebGL Effect - CSS Styles
 * Inspired by: https://codepen.io/TC5550/pen/WNNWoaO
 *
 * This CSS file provides styling for the metaballs WebGL canvas background effect.
 * Use this in conjunction with metaballs.js for a fully functional animated background.
 */

#metaballsCanvas {
    position: absolute;
    top: 100px;
    right: 0;
    left: 0;
    width: 100%;
    height: 400px;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

/* Ensure content above the canvas is properly layered */
.learning-hero,
.container,
.learning-hero-title,
.learning-hero-subtitle {
    position: relative;
    z-index: 1;
}
