/* ===== General Styles ===== */
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #fce4ec; 
    background: #1c1c1c;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }
  
  /* ===== Header ===== */
  header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(132deg, #000000, #e91e63, #121212, #ff4081, #0a0a0a, #e91e63);
    background-size: 400% 400%;
    animation: BackgroundGradient 25s ease infinite;
    color: white;
    padding: 20px;
    border-bottom: 3px solid #e91e63;
  }
  
  @keyframes BackgroundGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }
  
  header h1 {
    font-size: 2rem;
    margin: 0;
    font-weight: bold;
  }
  
  header nav {
    display: flex;
    gap: 15px;
  }
  
  header nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 18px;
    background: linear-gradient(90deg, #e91e63, #c2185b);
    border-radius: 25px;
    border: 2px solid transparent;
    transition: all 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 10px rgba(233, 30, 99, 0.3);
  }
  
  header nav a:hover {
    background: linear-gradient(90deg, #c2185b, #880e4f);
    border-color: #f8bbd0;
    transform: scale(1.05);
  }
  
  /* ===== Main Content ===== */
  main {
    max-width: 800px;
    margin: 30px auto;
    padding: 0 20px;
    flex-grow: 1;
  }
  
  /* ===== Section Headings ===== */
  h2 {
    color: #ff80ab;
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 2px solid #f8bbd0;
    font-size: 28px;
    text-align: center;
  }
  
  /* ===== Paragraphs ===== */
  p {
    text-align: center;
    font-size: 1.05rem;
    margin-bottom: 20px;
    color: #fce4ec;
  }
  
  /* ===== Lists ===== */
  ul {
    list-style-type: none;
    padding: 0;
    margin: 20px auto;
    max-width: 800px;
    text-align: center;
  }
  
  ul li {
    background: linear-gradient(270deg, #f48fb1, #fce4ec);
    color: #3e2723;
    font-weight: bold;
    margin: 12px 0;
    padding: 12px 24px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(233, 30, 99, 0.15);
    transition: all 0.3s ease, transform 0.2s ease;
  }
  
  /* ===== Links inside list items ===== */
  ul li a {
    color: inherit;
    text-decoration: none;
  }
  
  .btn-container{
    display: flex; 
    justify-content: center; 
  }
  
  /* ===== Button styling  ===== */
  button {
    cursor: pointer;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: bold;
    color: white;
    background: linear-gradient(90deg, #e91e63, #c2185b);
    border: none;
    border-radius: 25px;
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.4);
    transition: background 0.3s ease, transform 0.2s ease;
  }
  
  button:hover {
    background: linear-gradient(90deg, #c2185b, #880e4f);
    transform: scale(1.05);
  }
  
  /* ===== Images container ===== */
  .images {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 50px;
    border-radius: 10px;
  }
  
  .images img {
    width: 250px;
    height: auto;
    border: 2px solid #e91e63;
    border-radius: 10px;
    transition: box-shadow 0.3s ease;
  }
  
  .images img:hover {
    box-shadow: 0 0 15px #e91e63;
  }
  