Changed around line 1
+ body {
+ font-family: 'Arial', sans-serif;
+ margin: 0;
+ padding: 0;
+ background: linear-gradient(135deg, #ff9a9e, #fad0c4);
+ color: #333;
+ }
+
+ header {
+ text-align: center;
+ padding: 50px 20px;
+ background: rgba(255, 255, 255, 0.8);
+ margin-bottom: 20px;
+ }
+
+ header h1 {
+ font-size: 3rem;
+ color: #ff6f61;
+ }
+
+ header p {
+ font-size: 1.2rem;
+ color: #555;
+ }
+
+ main {
+ padding: 20px;
+ }
+
+ section {
+ margin-bottom: 40px;
+ }
+
+ h2 {
+ font-size: 2rem;
+ color: #ff6f61;
+ margin-bottom: 20px;
+ }
+
+ ul {
+ list-style-type: none;
+ padding: 0;
+ }
+
+ ul li {
+ background: rgba(255, 255, 255, 0.8);
+ margin: 10px 0;
+ padding: 10px;
+ border-radius: 5px;
+ }
+
+ .gallery {
+ display: flex;
+ justify-content: space-around;
+ flex-wrap: wrap;
+ }
+
+ .gallery img {
+ width: 30%;
+ border-radius: 10px;
+ margin-bottom: 20px;
+ }
+
+ button {
+ background: #ff6f61;
+ color: white;
+ border: none;
+ padding: 10px 20px;
+ font-size: 1rem;
+ border-radius: 5px;
+ cursor: pointer;
+ }
+
+ button:hover {
+ background: #ff3b2f;
+ }
+
+ footer {
+ text-align: center;
+ padding: 20px;
+ background: rgba(255, 255, 255, 0.8);
+ margin-top: 20px;
+ }
+
+ .social-links a {
+ margin: 0 10px;
+ color: #ff6f61;
+ text-decoration: none;
+ }
+
+ .social-links a:hover {
+ text-decoration: underline;
+ }
+
+ @media (max-width: 768px) {
+ .gallery img {
+ width: 45%;
+ }
+ }
+
+ @media (max-width: 480px) {
+ .gallery img {
+ width: 100%;
+ }
+ }