/* styles.css */
body {
    margin: 0;
    padding: 0;
    background-color: #121212;
    font-family: Arial, sans-serif;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }
  
  .container {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .profile-card {
    background-color: #1e1e1e;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    width: 300px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }
  
  .profile-picture {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 1rem;
  }
  
  .name {
    font-size: 1.5rem;
    margin: 0.5rem 0;
  }
  
  .location {
    color: #c0e74d;
    font-weight: bold;
    margin: 0.5rem 0;
  }
  
  .bio {
    font-style: italic;
    margin-bottom: 1.5rem;
  }
  
  .social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .button {
    text-decoration: none;
    color: #fff;
    background-color: #333;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    transition: background-color 0.3s ease;
  }
  
  
.button:hover {
    background-color: #c0e74d; /* Neon green */
    color: #000; /* Text turns black for contrast */
  }
  
  /* Responsive Design for Smaller Screens */
@media (max-width: 768px) {
    .profile-card {
      width: 90%; /* Adjusts card width for smaller screens */
      padding: 1.5rem; /* Reduces padding */
    }
  
    .profile-picture {
      width: 80px;
      height: 80px;
    }
  
    .name {
      font-size: 1.2rem;
    }
  
    .bio {
      font-size: 0.9rem;
    }
  
    .button {
      padding: 8px; /* Reduces button padding */
    }
  }
