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

#bootScreen {
    font-family: monospace;
    color: #0F0;
    background: black;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: pre;
    overflow: hidden;
    position: fixed;
    top:0; left:0;
    z-index: 9999;
}
#chatButton {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #0F0;
    color: black;
    font-family: monospace;
    padding: 10px 15px;
    border-radius: 8px;
    z-index: 9999;
    text-decoration: none;
    box-shadow: 0 0 10px #0F0;
    transition: 0.3s;
}
#chatButton:hover {
    background: black;
    color: #0F0;
    box-shadow: 0 0 20px #0F0;
}
