/* 全局样式 */
body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    margin: 0;
    padding: 0;
}

header {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px;
}

/* 标题样式 */
h1 {
    font-size: 36px;
}

/* 段落样式 */
p {
    font-size: 18px;
    line-height: 1.5;
}

/* 区块样式 */
section {
    background-color: white;
    padding: 20px;
    margin: 20px;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

/* 标题2样式 */
h2 {
    font-size: 24px;
    margin-top: 0;
}

/* 链接样式 */
a {
    color: #007BFF;
    text-decoration: none;
}

/* 鼠标悬停链接样式 */
a:hover {
    text-decoration: underline;
}

#candleButton {
    background-color: transparent;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

#count {
    font-size: 18px;
}

img {
    max-width: 100%;
    height: auto;
}




