body {
    font-family: "Source Han Sans", "Noto Sans CJK",  "Microsoft YaHei", "Arial", sans-serif;
    margin: 0;
    padding: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: rgba(20, 20, 20, 0.8); /* 调暗背景颜色 */
    color: white; /* 设置默认文字颜色为白色 */
    background-image: url('https://dailybing.com/api/v1');
}

h1, h2, h3 {
    color: white; /* 标题文字颜色为白色 */
}

/*MOBILE*/
@media screen and (orientation: portrait) {
    .container {
        width: 80vw;
        max-width: 600px;
        min-width: 280px;
        margin: 5vh auto;
    }
    hr{
        width: 60vw;
    }
    .avatar{
        width: 15vw;
    }
}

/*DESKTOP*/
@media screen and (orientation: landscape) {
    .container {
        width: 50vw;
        max-width: 800px;
        margin: 5vh auto;
    }
    hr{
        max-width: 600px;
        width: 40vw;
    }
    .avatar{
        width: 10vw;
    }
}

.card {
    margin-bottom: 5px;
    text-align: center;
    padding: 5px;
    border-radius: 20px;
    background-color: rgba(30, 30, 30, 0.96); /* 调暗卡片背景颜色 */
    color: white; /* 确保卡片内文字颜色也是白色 */
}

.link {
    color: white; /* 将链接颜色改为白色以保持一致 */
}

hr{
    align-items: center;
    height: 2px;
    opacity: 0.8;
    background-color:gray;
    border: none;
}

.avatar{
    border-radius: 50%;
}