Changed around line 1
+ :root {
+ --primary-color: #ff6f61;
+ --secondary-color: #ffcc5c;
+ --background-color: #f4f4f4;
+ --text-color: #333;
+ --font-family: 'Arial', sans-serif;
+ }
+
+ body {
+ font-family: var(--font-family);
+ color: var(--text-color);
+ background-color: var(--background-color);
+ margin: 0;
+ padding: 0;
+ line-height: 1.6;
+ }
+
+ header {
+ background: var(--primary-color);
+ color: white;
+ padding: 2rem;
+ text-align: center;
+ }
+
+ header h1 {
+ margin: 0;
+ font-size: 2.5rem;
+ }
+
+ header p {
+ margin: 0.5rem 0 0;
+ font-size: 1.2rem;
+ }
+
+ main {
+ padding: 2rem;
+ }
+
+ .hero {
+ background: var(--secondary-color);
+ padding: 2rem;
+ text-align: center;
+ border-radius: 10px;
+ margin-bottom: 2rem;
+ }
+
+ .hero h2 {
+ margin: 0;
+ font-size: 2rem;
+ }
+
+ .hero p {
+ font-size: 1.2rem;
+ }
+
+ .gallery {
+ margin-bottom: 2rem;
+ }
+
+ .gallery h2 {
+ text-align: center;
+ font-size: 2rem;
+ margin-bottom: 1rem;
+ }
+
+ .gallery-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
+ gap: 1rem;
+ }
+
+ .gallery-item {
+ height: 200px;
+ background-size: cover;
+ background-position: center;
+ border-radius: 10px;
+ }
+
+ .wishes {
+ text-align: center;
+ padding: 2rem;
+ background: var(--primary-color);
+ color: white;
+ border-radius: 10px;
+ }
+
+ .wishes h2 {
+ margin: 0;
+ font-size: 2rem;
+ }
+
+ .wishes p {
+ font-size: 1.2rem;
+ }
+
+ footer {
+ text-align: center;
+ padding: 1rem;
+ background: var(--text-color);
+ color: white;
+ }
+
+ @media (max-width: 768px) {
+ header h1 {
+ font-size: 2rem;
+ }
+
+ header p {
+ font-size: 1rem;
+ }
+
+ .hero h2 {
+ font-size: 1.5rem;
+ }
+
+ .hero p {
+ font-size: 1rem;
+ }
+
+ .gallery h2 {
+ font-size: 1.5rem;
+ }
+
+ .wishes h2 {
+ font-size: 1.5rem;
+ }
+
+ .wishes p {
+ font-size: 1rem;
+ }
+ }