/* 给整个页面加个背景色 */
body {
    background-color: #f0f2f5;
    font-family: 'Segoe UI', sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center; /* 水平居中 */
    align-items: center;     /* 垂直居中 */
    height: 100vh;           /* 占满屏幕高度 */
}

/* 设计卡片样式 */
.card {
    background-color: rgb(158, 52, 52);
    width: 300px;
    padding: 30px;
    border-radius: 15px;      /* 圆角 */
    box-shadow: 0 4px 15px rgba(0,0,0,0.1); /* 阴影 */
    text-align: center;
}

/* 按钮样式 */
button {
    background-color: #f5d743;
    color: rgb(158, 52, 52);
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s; /* 动画过渡 */
}

/* 鼠标悬停在按钮上的效果 */
button:hover {
    background-color: #da932a;
}