* {
    margin: 0;
    padding: 0;
}

body {
    background: black;
}

canvas {
    display: block;
}

#color {
    color: #BBB;
    font-family: helvetica, arial, sans-serif;
    font-size: 1.2em;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1000;
}
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
    background: #000;
}

#c {
    display: block; /* kayma olmasın */
}

/* Ortadaki Matrix tarzı yazı */
#title {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    color: #00FF46;               /* senin verdiğin yeşil */
    font-family: "Courier New", monospace;
    font-size: 48px;
    letter-spacing: 4px;
    text-transform: uppercase;

    text-shadow:
        0 0 5px  #00FF46,
        0 0 10px #00FF46,
        0 0 20px #00FF46,
        0 0 40px #00FF46;

    pointer-events: none; /* tıklamaya engel olmasın */
}

