* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "微软雅黑", sans-serif;
    background-color: #FFFFFF;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    text-align: center;
    padding: 20px;
}

.bubu-img {
    width: 300px;
    height: auto;
    margin-bottom: 30px;
}

h1 {
    font-size: 36px;
    color: #333333;
    margin-bottom: 40px;
}

.btn-group {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn {
    padding: 15px 40px;
    font-size: 20px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.forgive {
    background-color: #FF9EB1;
    color: #FFFFFF;
}

.unforgive {
    background-color: #CCCCCC;
    color: #FFFFFF;
}