Changed around line 1
+ body {
+ font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
+ background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%);
+ color: #333;
+ margin: 0;
+ padding: 0;
+ min-height: 100vh;
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ justify-content: center;
+ text-align: center;
+ }
+
+ header h1 {
+ font-size: 3rem;
+ color: #fff;
+ text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
+ }
+
+ .greeting {
+ background: rgba(255, 255, 255, 0.9);
+ padding: 2rem;
+ border-radius: 15px;
+ box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
+ margin: 1rem;
+ max-width: 600px;
+ }
+
+ .greeting p {
+ font-size: 1.2rem;
+ line-height: 1.6;
+ margin: 1rem 0;
+ }
+
+ .interactive {
+ cursor: pointer;
+ transition: transform 0.3s ease;
+ }
+
+ .interactive:hover {
+ transform: scale(1.1);
+ }
+
+ .heart {
+ color: #ff6b6b;
+ animation: heartbeat 1.5s infinite;
+ }
+
+ @keyframes heartbeat {
+ 0% { transform: scale(1); }
+ 50% { transform: scale(1.2); }
+ 100% { transform: scale(1); }
+ }
+
+ .countdown {
+ margin-top: 2rem;
+ }
+
+ .timer {
+ display: flex;
+ justify-content: center;
+ gap: 1rem;
+ font-size: 1.5rem;
+ color: #fff;
+ }
+
+ .timer div {
+ background: rgba(0, 0, 0, 0.5);
+ padding: 1rem;
+ border-radius: 10px;
+ min-width: 80px;
+ }
+
+ footer {
+ margin-top: 2rem;
+ color: #fff;
+ }
+
+ @media (max-width: 600px) {
+ header h1 {
+ font-size: 2rem;
+ }
+
+ .greeting {
+ padding: 1rem;
+ }
+
+ .timer {
+ flex-direction: column;
+ gap: 0.5rem;
+ }
+ }