body {
    background-color: #ffffff; /* 黄色背景 */
    position: relative; /* 为水印定位 */
}

body::before {
    content: "Bitcoin Stablecoin"; /* 水印文本 */
    position: fixed; /* 固定位置 */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg); /* 居中并旋转 */
    font-size: 5em; /* 字体大小 */
    color: rgba(0, 0, 0, 0.1); /* 半透明黑色 */
    pointer-events: none; /* 允许点击下面的元素 */
    z-index: -1; /* 确保在内容之下 */
    white-space: nowrap; /* 防止文本换行 */
}
/* 手动替换 favicon */
link[rel="shortcut icon"] {
    display: none;
}

head::after {
    content: '';
    background: url('.gitbook/assets/logo.svg') no-repeat;
}