/* 整体页面背景色设置为蓝色系，这里用浅蓝色示例，你可以调整颜色值 */
body {
    margin: 0;
    padding: 0;
    background-color: #e0f0ff;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    align-items: center;
    justify-content: center;
}

.background-image {
    width: 100%;
    height: auto;
    max-height: 50vh; /* 限制图片最大高度占视口高度的一半左右，可调整 */
    object-fit: cover;
}

.deer-image {
    width: 100px; /* 小鹿图片大小，可根据实际情况调整 */
    height: auto;
    position: absolute;
    /* 根据你想要的小鹿在页面中的位置调整下面的数值 */
    top: 20%;
    left: 20%;
}

.link-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}

.main-link {
    text-decoration: none;
    color: white;
    background-color: #007bff; /* 链接按钮颜色，蓝色示例，可改 */
    padding: 10px 20px;
    border-radius: 5px;
    margin-bottom: 10px;
    width: 150px;
    text-align: center;
}

.main-link:hover {
    background-color: #0056b3; /* 链接鼠标悬停时的颜色变化 */
}