Changed around line 1
+ :root {
+ --primary-color: #ff6b6b;
+ --secondary-color: #4ecdc4;
+ --text-color: #2d3436;
+ --background-color: #fff5f5;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
+ line-height: 1.6;
+ color: var(--text-color);
+ background-color: var(--background-color);
+ }
+
+ .container {
+ max-width: 1200px;
+ margin: 0 auto;
+ padding: 2rem;
+ }
+
+ .hero {
+ height: 100vh;
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ align-items: center;
+ text-align: center;
+ background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
+ color: white;
+ }
+
+ h1 {
+ font-size: 4rem;
+ margin-bottom: 1rem;
+ animation: fadeIn 2s ease-in;
+ }
+
+ .subtitle {
+ font-size: 1.5rem;
+ opacity: 0;
+ animation: slideUp 1s ease-in forwards;
+ animation-delay: 1s;
+ }
+
+ .memories {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
+ gap: 2rem;
+ padding: 4rem 0;
+ }
+
+ .memory-card {
+ background: white;
+ padding: 2rem;
+ border-radius: 15px;
+ box-shadow: 0 10px 20px rgba(0,0,0,0.1);
+ transition: transform 0.3s ease;
+ }
+
+ .memory-card:hover {
+ transform: translateY(-10px);
+ }
+
+ .message {
+ text-align: center;
+ padding: 4rem 0;
+ }
+
+ .love-letter {
+ max-width: 800px;
+ margin: 2rem auto;
+ font-size: 1.2rem;
+ line-height: 1.8;
+ }
+
+ .heart {
+ width: 50px;
+ height: 50px;
+ background: var(--primary-color);
+ position: relative;
+ margin: 2rem auto;
+ transform: rotate(45deg);
+ animation: pulse 1.5s ease infinite;
+ }
+
+ .heart:before,
+ .heart:after {
+ content: '';
+ width: 50px;
+ height: 50px;
+ background: var(--primary-color);
+ border-radius: 50%;
+ position: absolute;
+ }
+
+ .heart:before {
+ left: -25px;
+ }
+
+ .heart:after {
+ top: -25px;
+ }
+
+ footer {
+ text-align: center;
+ padding: 2rem;
+ background: var(--primary-color);
+ color: white;
+ }
+
+ @keyframes fadeIn {
+ from { opacity: 0; }
+ to { opacity: 1; }
+ }
+
+ @keyframes slideUp {
+ from {
+ opacity: 0;
+ transform: translateY(20px);
+ }
+ to {
+ opacity: 1;
+ transform: translateY(0);
+ }
+ }
+
+ @keyframes pulse {
+ 0% { transform: rotate(45deg) scale(1); }
+ 50% { transform: rotate(45deg) scale(1.1); }
+ 100% { transform: rotate(45deg) scale(1); }
+ }
+
+ @media (max-width: 768px) {
+ h1 {
+ font-size: 2.5rem;
+ }
+
+ .subtitle {
+ font-size: 1.2rem;
+ }
+
+ .container {
+ padding: 1rem;
+ }
+
+ .memories {
+ gap: 1rem;
+ }
+ }