body {
    margin: 0;
    background-image: url("back.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: black;
    font-family: Arial, sans-serif;
}

/* 左サイドバー */
.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 180px;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    padding: 20px;
    box-sizing: border-box;
    color: white;
}

/* サイドバー見出し */
.sidebar h2 {
    margin-top: 0;
}

/* サイドバーリンク */
.sidebar a,
.sidebar a:visited {
    color: #ff99ff;
    text-decoration: none;
    display: block;
    margin: 10px 0;
}

/* マウスを乗せた時 */
.sidebar a:hover {
    color: white;
}

/* クリック中 */
.sidebar a:active {
    color: white;
}

/* メインコンテンツ */
.content {
    margin-left: 220px;
    padding: 20px;
    color: black;
}

/* テーブル */
table {
    background: rgba(255, 255, 255, 0.85);
    border-collapse: collapse;
}

/* テーブルセル */
td,
th {
    padding: 6px;
}

/* 通常リンク */
a {
    color: blue;
}

a:visited {
    color: purple;
}

/* グリッチ風タイトル */
.glitch {
    text-shadow:
        2px 0 magenta,
       -2px 0 cyan;
}