Changed around line 1
+ :root {
+ --primary-color: #ff4d6d;
+ --secondary-color: #ff8fa3;
+ --background-color: #ffe5e5;
+ --text-color: #4a4a4a;
+ }
+
+ * {
+ 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);
+ min-height: 100vh;
+ display: flex;
+ flex-direction: column;
+ }
+
+ .hero {
+ height: 60vh;
+ position: relative;
+ overflow: hidden;
+ }
+
+ .heart-container {
+ width: 100%;
+ height: 100%;
+ position: relative;
+ }
+
+ .love-controls {
+ text-align: center;
+ padding: 2rem;
+ }
+
+ .love-button {
+ background-color: var(--primary-color);
+ color: white;
+ border: none;
+ padding: 1rem 2rem;
+ font-size: 1.2rem;
+ border-radius: 50px;
+ cursor: pointer;
+ transition: transform 0.3s ease, box-shadow 0.3s ease;
+ box-shadow: 0 4px 15px rgba(255, 77, 109, 0.3);
+ }
+
+ .love-button:hover {
+ transform: translateY(-2px);
+ box-shadow: 0 6px 20px rgba(255, 77, 109, 0.4);
+ }
+
+ .love-messages {
+ text-align: center;
+ padding: 2rem;
+ }
+
+ .love-messages h1 {
+ color: var(--primary-color);
+ margin-bottom: 1rem;
+ font-size: 2.5rem;
+ }
+
+ .love-messages p {
+ font-size: 1.2rem;
+ line-height: 1.6;
+ max-width: 600px;
+ margin: 0 auto;
+ }
+
+ .heart {
+ position: absolute;
+ pointer-events: none;
+ animation: float 4s ease-in-out infinite;
+ }
+
+ @keyframes float {
+ 0% {
+ transform: translateY(0) scale(1);
+ opacity: 1;
+ }
+ 100% {
+ transform: translateY(-100vh) scale(0);
+ opacity: 0;
+ }
+ }
+
+ footer {
+ margin-top: auto;
+ padding: 2rem;
+ text-align: center;
+ background-color: white;
+ }
+
+ @media (max-width: 768px) {
+ .love-messages h1 {
+ font-size: 2rem;
+ }
+
+ .love-messages p {
+ font-size: 1rem;
+ padding: 0 1rem;
+ }
+
+ .love-button {
+ padding: 0.8rem 1.6rem;
+ font-size: 1rem;
+ }
+ }