body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    background-color: #fff;
}

.container {
    max-width: 80%;
}

.logo {
    width: 200px;
    height: 150px;
    margin-bottom: 56px;
}

.buttons {
    margin: 8px 0 72px 0; /* 上8px，左右为0，下72px */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.button {
    display: inline-block;
    padding: 4px 8px;
    background-color: #221111;
    color: #fff;
    text-decoration: none;
    border-radius: 0px;
    text-align: center;
    font-weight: sans-serif; /* 改为使用粗体显示 */
    margin-bottom: 16px; /* 每个按钮间添加 16px 间距 */
}

p {
    color: #221111;
    line-height: 1.5; /* 将行距加倍 */
}

.highlight {
    font-weight: bold;
    color: black;
}

@media (min-width: 768px) {
    .container {
        max-width: 60%;
    }
}