/* Reset default browser styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Full-page background image */
  body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-image: url('bg.jpeg'); /* Use your bg.jpeg file here */
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
  }
  
  /* Container for content */
  .container {
    width: 100%;
    max-width: 600px;
    padding: 20px;
  }
  
  /* Centered content styling */
  .content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
  }
  
  .content p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  }
  
  /* Social links styling */
  .social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  
  .social-links a {
    text-decoration: none;
    color: white;
    height: 90%;
    font-size: 1.5rem;
    padding: 12px 24px;
    border-radius: 800px; /* Rounded corners */
    background-color: black; /* Gradient background */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); /* Subtle shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth hover effect */
  }
  
  .social-links a:hover {
    transform: translateY(-5px); /* Slight upward movement */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3); /* Enhanced shadow on hover */
  }
  
  /* Optional: Add animation to buttons */
  @keyframes pulse {
    0%, 100% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.05);
    }
  }
  
  .social-links a:hover {
    animation: pulse 1s infinite; /* Pulsing effect on hover */
  }