/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    background-color: hsl(217, 33%, 14%); /* Beige background */
    color: hsl(330, 100%, 100%);
    text-align: center;
    padding: 2rem;
  }
  
  .container {
    margin-top: 10vh;
  }
  .logo {
    max-width: 200px;
    margin-bottom: 20px;
    cursor: pointer;
    animation: slideInOut 3s ease-in-out infinite alternate;
  }
  
  
  @keyframes slideInOut {
    0% {
      transform: translateX(-100%);
      opacity: 0;
    }
    25% {
      transform: translateX(0);
      opacity: 1;
    }
    75% {
      transform: translateX(0);
      opacity: 1;
    }
    100% {
      transform: translateX(100%);
      opacity: 0;
    }
  }
  
  
  
  h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
  }
  
  p {
    font-size: 1.2rem;
    margin-bottom: 30px;
  }
  
  footer {
    margin-top: 50px;
    font-size: 0.9rem;
  }
  
  /* WhatsApp Icon Styling */
  .whatsapp-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
  }
  
  .whatsapp-icon img {
    width: 60px;
    height: 60px;
    cursor: pointer;
    transition: transform 0.3s ease;
  }
  
  .whatsapp-icon img:hover {
    transform: scale(1.1);
  }
  