body {
    background-color: black;
    color: white; /* コンテンツの文字色を白に設定 */
    font-family: monospace;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start; /* 上部から開始するように変更 */
    min-height: 100vh;
    text-align: left; /* 左揃えに変更 */
    overflow: auto; /* スクロールを許可 */
    position: relative;
}

canvas#backgroundCanvas {
    position: fixed; /* キャンバスを固定に変更 */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.8); /* 背景を少し透明にして見やすく */
    margin: 20px;
    overflow: auto; /* コンテンツのスクロールを許可 */
    box-sizing: border-box; /* コンテンツのボックスサイズを調整 */
}

.cursor {
    display: inline-block;
    width: 10px;
    height: 20px;
    background-color: white; /* カーソル色を白に設定 */
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    50% {
        background-color: transparent;
    }
}

a {
    color: #0F0; /* リンク色を緑に設定 */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.footer {
    font-size: 12px;
    text-align: center;
    padding: 10px;
    width: 100%; /* フッターの幅を100%に設定 */
    background-color: black; /* フッター背景色を設定 */
    color: white; /* フッター文字色を白に設定 */
    position: relative; /* フッターを相対位置に設定 */
    clear: both; /* フロート解除 */
    display: none; /* 初期状態では非表示 */
    box-sizing: border-box; /* コンテンツのボックスサイズを調整 */
}
