/*全局基础样式*/
/*下面的样式放到全局css里面去*/
/*--页面鼠标默认样式--*/
body{
    /* 鼠标图标 */
cursor: url(https://blog-static.cnblogs.com/files/blogs/409706/BLOG_cursor.ico),auto;
    /*url("你的鼠标指针图标路径")*/
}

/* 天上飘雪花，css和页脚都要配置 */
#Snow{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    // 博客背景色，不是雪花颜色
    background: rgba(125, 137, 95, 0);
    pointer-events: none;
}

#rusty-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.7);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease-out, visibility 0.8s ease-out;
}

#rusty-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.rusty-content {
    text-align: center;
    font-family: 'Courier New', Courier, monospace;
}

#typewriter-text {
    color: #c0b090;
    font-size: 1.8em;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(192, 176, 144, 0.5);
}

.cursor {
    display: inline-block;
    background-color: #c0b090;
    width: 3px;
    margin-left: 4px;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}