/* General Reset */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background: linear-gradient(45deg, #ff4d4d, #ff7f50, #ffcc00);
    color: #fff;
    text-align: center;
    overflow-x: hidden;
  }
  
  /* Header Styles */
  header {
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.5);
  }
  
  header h1 {
    font-size: 3rem;
    margin: 0;
  }
  
  header p {
    font-size: 1.2rem;
    margin: 10px 0 0;
  }
  
  /* Section Styles */
  main section {
    padding: 40px 20px;
  }
  
  .centered-content {
    max-width: 800px;
    margin: 0 auto;
  }
  
  h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  
  p {
    font-size: 1.2rem;
  }
  
  ul, ol {
    list-style: none;
    padding: 0;
  }
  
  ul li, ol li {
    font-size: 1.2rem;
    margin: 10px 0;
  }
  
  /* Button Styles */
  .button {
    display: inline-block;
    padding: 12px 25px;
    font-size: 1.2rem;
    color: #fff;
    background: #ff4d4d;
    text-decoration: none;
    border-radius: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
    margin: 10px;
  }
  
  .button:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.6);
  }
  
  .fairlunch-btn {
    background: #ff4d4d;
  }
  
  .fairlunch-btn:hover {
    background: #ffcc00;
  }
  
  .twitter-btn {
    background: #1DA1F2;
  }
  
  .twitter-btn:hover {
    background: #0d8bec;
  }
  
  .telegram-btn {
    background: #0088cc;
  }
  
  .telegram-btn:hover {
    background: #005f99;
  }
  
  /* Footer Styles */
  footer {
    background: rgba(0, 0, 0, 0.8);
    padding: 10px 20px;
    font-size: 1rem;
  }
  
  /* Animations */
  @keyframes bounce {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-10px);
    }
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    header h1 {
      font-size: 2.5rem;
    }
  
    h2 {
      font-size: 2rem;
    }
  
    .button {
      font-size: 1rem;
      padding: 10px 20px;
    }
  }
/* Logo Styling */
.logo {
    width: 150px;
    display: block;
    margin: 0 auto 20px;
    animation: logo-bounce 2s infinite ease-in-out;
    transition: transform 0.3s ease;
  }
  
  .logo:hover {
    transform: scale(1.1) rotate(10deg);
  }
  
  /* Logo Bounce Animation */
  @keyframes logo-bounce {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-15px);
    }
  }
    