* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #B4C7C9; /* Was black 000 */
    overflow: hidden; /* Prevents scrollbars */
    font-family: 'Courier New', Courier, monospace;
}

#matrix-canvas {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1; /* Pushes the matrix rain behind any text */
}

.content {
    position: relative;
    color: #00F; /* Matrix green = 0F0 */
    text-align: center;
    margin-top: 20vh;
}
