body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Courier New', Courier, monospace;
}

#matrix-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#word-container {
    position: relative;
    z-index: 2;
    font-size: 4.5rem; /* Increased size slightly to make it stand out */
    font-weight: bold;
    letter-spacing: 6px;
    color: #00ff00; /* Matrix Green */
    /* Strong text glow ensures visibility against the falling matrix rain */
    text-shadow: 0 0 12px rgba(0, 255, 0, 1), 0 0 4px #000000; 
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { 
        opacity: 0; 
        transform: scale(0.95); 
    }
    to { 
        opacity: 1; 
        transform: scale(1); 
    }
}

