/* 将canvas设置为背景 */
#canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* 置于内容之后 */
    background: #080510;
}

/* 内容容器 */
.content {
    position: relative;
    z-index: 1;
    width: 100%;
    margin: 0 auto;
/*    padding: 2rem;*/
    color: #fff;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
}