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

body {
    background: linear-gradient(to right, #ff6b6b, #f06595);
    font-family: 'Arial', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
    color: #fff;
}

#content {
    padding: 20px;
}

h1 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.btn {
    border: none;
    padding: 12px 20px;
    font-size: 1rem;
    border-radius: 10px;
    cursor: pointer;
    margin: 10px;
    transition: transform 0.3s ease, background 0.3s ease;
}

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

.yes:hover {
    transform: scale(1.1);
}

.no {
    background: #dc3545;
    color: white;
    position: absolute;
}

@media (max-width: 600px) {
    h1 {
        font-size: 1.5rem;
    }
    .btn {
        font-size: 0.9rem;
        padding: 10px 16px;
    }
}
