body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(to right, #ffafbd, #ffc3a0);
    color: #333;
    text-align: center;
    padding: 50px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    animation: backgroundAnimation 10s infinite alternate;
}

@keyframes backgroundAnimation {
    0% { background: linear-gradient(to right, #ffafbd, #ffc3a0); }
    100% { background: linear-gradient(to right, #ffc3a0, #ffafbd); }
}

.container {
    max-width: 600px;
}

.blessings-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#main-blessing {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
    transition: opacity 0.5s ease;
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* 居中对齐 */
}

#other-blessings {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#other-blessings p {
    font-size: 18px;
    margin: 0;
    transition: opacity 1s;
}

.fade-in {
    opacity: 1;
}

.fade-out {
    opacity: 0;
}

.glow {
    font-size: 48px;
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8), 0 0 30px rgba(255, 105, 180, 1);
}

button {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #ff69b4;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

button:hover {
    background-color: #ff1493;
    transform: scale(1.05);
}

ul {
    list-style-type: none;
    padding: 0;
}

li {
    background-color: rgba(255, 255, 255, 0.8);
    margin: 10px 0;
    padding: 15px;
    border-radius: 10px;
    transition: transform 0.3s;
}

li:hover {
    transform: scale(1.02);
}

#background-blessings {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#background-blessings p {
    font-size: 18px;
    margin: 0;
    transition: opacity 1s;
}