/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f2f5;
    color: #333;
    text-align: center;
  }
  
  header {
    background-color: #282c34;
    padding: 20px;
    color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  
  header h1 {
    font-size: 2.5em;
    margin: 0;
    font-weight: 600;
    animation: fadeIn 1s ease-out;
  }
  
  /* Contribution Count */
  .total-contributions {
    background-color: #28a745;
    color: white;
    padding: 15px 25px;
    font-size: 1.6em;
    margin: 20px auto;
    display: inline-block;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .total-contributions:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  }
  
  #contribution-count {
    font-family: 'Roboto Mono', monospace;
    font-weight: 700;
  }
  
  /* Contributors Container */
  .my-contributors-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 20px;
    gap: 20px;
  }
  
  /* Contributor Card */
  .my-contributor {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
    width: 300px;
    text-align: left;
    position: relative;
    overflow: hidden;
    animation: slideUp 0.5s ease-out;
  }
  
  .my-contributor:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  }
  
  .my-contributor h2 {
    font-size: 1.3em;
    margin-top: 0;
    color: #007bff;
  }
  
  .my-contributor a {
    text-decoration: none;
    color: #007bff;
    transition: color 0.3s;
  }
  
  .my-contributor a:hover {
    color: #0056b3;
  }
  
  .my-contributor p {
    font-size: 0.9em;
    margin: 10px 0;
  }
  
  /* Animations */
  @keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
  }
  
  @keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .my-contributor {
        width: 90%;
    }
  }