/* General Reset */
body {
    margin: 0;
    font-family: 'Alexandria', sans-serif;
    background: linear-gradient(135deg, #79193f 40%, #ad245a 100%);
    color: #d9d9d9;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }
  
  /* Container Styles */
  .container {
    text-align: center;
    background-color: #d9d9d9;
    border-radius: 10px;
    padding: 20px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    margin: auto;
  }
  
  /* Logo Styles */
  .logo {
    max-width: 200px;
    margin: 10px auto 20px;
  }
  
  /* Typography */
  h1 {
    font-size: 28px;
    color: #79193f;
    font-weight: 700;
  }
  
  .tagline {
    font-family: 'Kristi', cursive;
    font-size: 20px;
    color: #481824;
    margin: 10px 0 20px;
    letter-spacing: 1px; /* Slight increase in spacing for readability */
  }
  
  .footer-text {
    font-size: 14px;
    color: #d9d9d9;
    text-align: center;
    margin-top: auto;
    padding: 10px 0;
  }
  
  /* Button Styles */
  .buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .button {
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    padding: 12px 20px;
    border-radius: 5px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
  }
  
  .button img.icon {
    width: 20px;
    height: 20px;
  }
  
  .button.instagram {
    background-color: #ad245a;
  }
  
  .button.instagram:hover {
    background-color: #921d4f;
    transform: scale(1.05); /* Subtle pop effect */
  }
  
  .button.whatsapp {
    background-color: #25D366;
  }
  
  .button.whatsapp:hover {
    background-color: #1EAE55;
    transform: scale(1.05); /* Subtle pop effect */
  }
  