Changed around line 1
+ :root {
+ --primary-color: #ff9ecd;
+ --secondary-color: #87ceeb;
+ --accent-color: #ffd700;
+ --text-color: #4a4a4a;
+ --background-color: #fff5f8;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
+ background-color: var(--background-color);
+ color: var(--text-color);
+ line-height: 1.6;
+ }
+
+ header {
+ background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
+ padding: 2rem;
+ text-align: center;
+ }
+
+ h1 {
+ color: white;
+ font-size: 2.5rem;
+ text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
+ animation: float 3s ease-in-out infinite;
+ }
+
+ .sparkle-container {
+ position: relative;
+ }
+
+ .sparkles {
+ position: absolute;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ pointer-events: none;
+ }
+
+ .cloud {
+ width: 100px;
+ height: 40px;
+ background: white;
+ border-radius: 20px;
+ position: absolute;
+ animation: float-cloud 15s linear infinite;
+ opacity: 0.8;
+ }
+
+ .cloud:nth-child(1) { top: 20%; left: -100px; animation-delay: 0s; }
+ .cloud:nth-child(2) { top: 40%; left: -100px; animation-delay: 5s; }
+ .cloud:nth-child(3) { top: 60%; left: -100px; animation-delay: 10s; }
+
+ .welcome-message {
+ text-align: center;
+ padding: 3rem 1rem;
+ }
+
+ .memory-wall {
+ padding: 3rem 1rem;
+ }
+
+ .photo-frames {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ padding: 2rem;
+ }
+
+ .polaroid {
+ background: white;
+ padding: 1rem;
+ box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
+ transform: rotate(var(--rotation));
+ transition: transform 0.3s ease;
+ }
+
+ .polaroid:hover {
+ transform: scale(1.05) rotate(var(--rotation));
+ }
+
+ .photo-placeholder {
+ background: var(--secondary-color);
+ height: 200px;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ color: white;
+ font-size: 1.2rem;
+ }
+
+ .interactive-area {
+ text-align: center;
+ padding: 3rem 1rem;
+ }
+
+ #bubbleButton {
+ background: var(--accent-color);
+ border: none;
+ padding: 1rem 2rem;
+ border-radius: 25px;
+ font-size: 1.2rem;
+ cursor: pointer;
+ transition: transform 0.3s ease;
+ }
+
+ #bubbleButton:hover {
+ transform: scale(1.1);
+ }
+
+ footer {
+ text-align: center;
+ padding: 2rem;
+ background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
+ color: white;
+ }
+
+ @keyframes float {
+ 0%, 100% { transform: translateY(0); }
+ 50% { transform: translateY(-10px); }
+ }
+
+ @keyframes float-cloud {
+ from { transform: translateX(-100px); }
+ to { transform: translateX(calc(100vw + 100px)); }
+ }
+
+ @media (max-width: 768px) {
+ h1 { font-size: 2rem; }
+ .photo-frames { grid-template-columns: 1fr; }
+ }