/**
 * Matrix Rain Effect - CSS Styles
 * Inspired by: hello-matrix effect
 *
 * This CSS file provides styling for the Matrix-style falling text canvas background effect.
 * Use this in conjunction with matrix-rain.js for a fully functional animated background.
 */

#matrixCanvas {
    position: fixed;
    top: 100px;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

#matrixCanvas canvas {
    display: block;
    width: 100%;
    height: 100%;
}

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