Changed around line 1
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Arial', sans-serif;
+ background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ height: 100vh;
+ color: #333;
+ }
+
+ .container {
+ text-align: center;
+ background: rgba(255, 255, 255, 0.9);
+ padding: 2rem;
+ border-radius: 15px;
+ box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
+ max-width: 400px;
+ width: 90%;
+ }
+
+ h1 {
+ font-size: 2rem;
+ margin-bottom: 1.5rem;
+ color: #444;
+ }
+
+ .buttons {
+ display: flex;
+ justify-content: space-around;
+ margin-bottom: 1.5rem;
+ }
+
+ .btn {
+ padding: 0.75rem 1.5rem;
+ border: none;
+ border-radius: 25px;
+ font-size: 1rem;
+ cursor: pointer;
+ transition: all 0.3s ease;
+ color: white;
+ }
+
+ .btn.yes {
+ background: linear-gradient(135deg, #4caf50, #81c784);
+ }
+
+ .btn.no {
+ background: linear-gradient(135deg, #f44336, #e57373);
+ }
+
+ .btn:hover {
+ transform: translateY(-3px);
+ box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
+ }
+
+ .btn:active {
+ transform: translateY(0);
+ }
+
+ .result {
+ font-size: 1.25rem;
+ font-weight: bold;
+ margin-top: 1rem;
+ color: #555;
+ }
+
+ @media (max-width: 480px) {
+ h1 {
+ font-size: 1.75rem;
+ }
+
+ .btn {
+ padding: 0.5rem 1rem;
+ font-size: 0.9rem;
+ }
+
+ .result {
+ font-size: 1rem;
+ }
+ }