body {
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.binary-stream {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    color: #009e00;
    font-size: 16px;
    line-height: 1;
    white-space: pre; /* white-spaceをpreに変更して改行を保持 */
}

/* アニメーションの速度や方向を調整 */
@keyframes scroll {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(calc(-100% - 1em));
    }
}
