* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%);
    font-family: 'Poppins', sans-serif;
}

.box {
    background: white;
    padding: 40px 60px;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    text-align: center;
    animation: fadeIn 2s ease-in-out;
}

h2 {
    margin-bottom: 30px;
    font-size: 24px;
    color: #333;
}

.buttons button {
    padding: 12px 25px;
    font-size: 18px;
    font-weight: bold;
    margin: 10px;
    cursor: pointer;
    border: none;
    border-radius: 8px;
    transition: all 0.4s ease;
}

#yes {
    background: #28a745;
    color: white;
}

#yes:hover {
    background: #218838;
    transform: scale(1.1);
}

#no {
    background: #dc3545;
    color: white;
    position: absolute;
    transition: all 0.3s ease, transform 0.2s ease;
}

#no:hover {
    transform: scale(1.1) rotate(10deg);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
