body {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            background-color: #000;
            color: white;
            text-align: center;
            font-family: Arial, sans-serif;
        }
        .container {
            background: rgba(0, 0, 0, 0.8);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 0 20px #049c538e;
        }
        h1 {
            color: #049c53;
        }
        p {
            margin-bottom: 20px;
        }
        .buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
        }
        button {
            padding: 10px 20px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 16px;
            transition: 0.3s;
        }
        .yes { background: green; color: white; }
        .no { background: red; color: white; }
        .yes:hover { background: darkgreen; }
        .no:hover { background: darkred; }

button {
  transition: transform 0.3s ease;
}

button:active {
  transform: scale(1.1);
}