Changed around line 1
+ :root {
+ --primary-color: #2c3e50;
+ --accent-color: #3498db;
+ --background-color: #ecf0f1;
+ --text-color: #2c3e50;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
+ background: var(--background-color);
+ color: var(--text-color);
+ min-height: 100vh;
+ display: flex;
+ flex-direction: column;
+ }
+
+ .container {
+ flex: 1;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ padding: 2rem;
+ }
+
+ .greeting-wrapper {
+ position: relative;
+ padding: 4rem;
+ }
+
+ .greeting {
+ font-size: clamp(2rem, 10vw, 6rem);
+ text-align: center;
+ background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
+ -webkit-background-clip: text;
+ background-clip: text;
+ color: transparent;
+ animation: fadeIn 1.5s ease-out;
+ text-shadow: 0 0.1em 0.2em rgba(0,0,0,0.1);
+ }
+
+ .floating-particles span {
+ position: absolute;
+ width: 10px;
+ height: 10px;
+ background: var(--accent-color);
+ border-radius: 50%;
+ pointer-events: none;
+ opacity: 0.6;
+ }
+
+ .floating-particles span:nth-child(odd) {
+ background: var(--primary-color);
+ }
+
+ footer {
+ text-align: center;
+ padding: 1rem;
+ font-size: 0.9rem;
+ color: var(--text-color);
+ opacity: 0.8;
+ }
+
+ @keyframes fadeIn {
+ from {
+ opacity: 0;
+ transform: translateY(20px);
+ }
+ to {
+ opacity: 1;
+ transform: translateY(0);
+ }
+ }
+
+ @media (prefers-reduced-motion: reduce) {
+ .greeting, .floating-particles span {
+ animation: none;
+ }
+ }
+
+ @media (max-width: 768px) {
+ .greeting-wrapper {
+ padding: 2rem;
+ }
+ }