/* style.css */
body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(135deg, #ffafbd, #ffc3a0);
    color: #333;
}

.wrapper {
    position: relative;
    width: 90%;
    max-width: 500px;
    text-align: center;
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.question {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.gif {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn-group {
    display: flex;
    justify-content: space-around;
    gap: 15px;
}

button {
    padding: 12px 30px;
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

button:focus {
    outline: none;
}

.yes-btn {
    background-color: #4caf50;
    color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.yes-btn:hover {
    background-color: #45a049;
    transform: scale(1.05);
}

.no-btn {
    position: absolute;
    background-color: #ff4d4d;
    color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.no-btn:hover {
    background-color: #e43e3e;
    transform: scale(1.05);
}
