body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}
 
.container {
    text-align: center;
    padding: 20px;
    background: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}
 
h1 {
    font-size: 6em;
    margin: 0;
    color: #ff6b6b; /* 或者其他你喜欢的颜色 */
}
 
p {
    font-size: 1.2em;
    margin: 10px 0;
}
 
.btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1em;
    color: white;
    background-color: #5a5a5a; /* 或者其他你喜欢的颜色 */
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}
 
.btn:hover {
    background-color: #333; /* 或者其他你喜欢的颜色 */
}