body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f4f4;
    color: #333;
}

.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    z-index: -1;
    animation: gradientShift 10s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

header {
    text-align: center;
    padding: 2rem 1rem;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

header p {
    font-size: 1.2rem;
    color: #666;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.social {
    background-color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-decoration: none;
    color: #333;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: background-color 0.3s ease;
}

.social:hover {
    background-color: #e0e0e0;
}

.feed {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.feed h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.embed-container {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
.facebook-feed {
  margin: 40px auto;
  max-width: 500px;
  text-align: center;
}

.facebook-feed h2 {
  font-size: 1.5em;
  margin-bottom: 20px;
}