body, html {
    height: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f0f0f0; /* 你可以更改背景颜色 */
    font-family: Arial, sans-serif;
}

.center-text {
    text-align: center;
}

.custom-link {
    font-size: 24px; /* 你可以调整文字大小 */
    color: #f7182f; /* 你可以更改文字颜色 */
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.custom-link:hover {
    font-size: 26px; /* 悬停时文字变大 */
    color: #f7182f; /* 悬停时文字颜色变化 */
}
