# -*- coding: utf-8 -*-
"""Untitled2.ipynb

Automatically generated by Colab.

Original file is located at
    https://colab.research.google.com/drive/1P9d21WJVk970kFcswCTWNjHETwu_eftw
"""

body {
    background-color: #ffdde1; /* Soft pink background */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.container {
    text-align: center;
}

h1 {
    color: #d63384;
    font-size: 2.5rem;
}

.gif-container img {
    width: 250px;
    margin: 20px 0;
}

.btn-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

button {
    padding: 10px 25px;
    font-size: 1.2rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

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

#no-btn {
    background-color: #dc3545;
    color: white;
}