/* Reset some default browser styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    /* Use Poppins as the font family */
    font-family: 'Poppins', sans-serif;
    background-color: #95D7CB; /* Adjust to your preferred background color */
    color: #333;
  }
  
  /* Container to center content and set max width */
  .container {
    max-width: 400px;
    margin: 0 auto;
    padding: 1rem;
    text-align: center;
  }
  
  /* Profile Section */
  .profile-section {
    margin-bottom: 1.0rem;
  }
  
  .profile-pic-container {
    width: 120px;
    height: 120px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #333;
  }
  
  .profile-pic {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .name {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
  }
  
  .subtext {
    font-size: 1rem;
    color: #000000;
  }
  
  /* Title lines for Social Media and Projects */
  .section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 600;
    position: relative;
  }
  
  /* Lines on both sides */
  .section-title::before,
  .section-title::after {
    content: "";
    flex: 1;
    height: 1px;
    background-color: #333;
    margin: 0 10px;
  }
  
  /* Social Media Section */
  .social-media {
    margin-bottom: 0.6rem;
  }
  
  .social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
  }
  
  .social-links a img {
    width: 32px;
    height: 32px;
    transition: transform 0.2s;
  }
  
  .social-links a:hover img {
    transform: scale(1.1);
  }
  
  /* Projects Section */
  .projects {
    margin-bottom: 2rem;
  }
  
  /* Project Buttons */
  .project-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background-color: #c6f4ec;
    border: none;
    padding: 0.75rem 1rem;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 6px;
    transition: background-color 0.2s;
    text-align: left;
    font-weight: 500;
    border: #1E4F46 3px solid;
  }
  
  .project-btn:hover {
    background-color: #e2e2e2;
  }
  
  /* Pink Highlighted Project Button */
  .highlight {
    background-color: #e4a6da;
    color: #000000;
    border: #9d5691 3px solid;
  }

  .main-project {
    background-color: #96f3aa;
    color: #000000;
    border: #058621 3px solid;
  }
  
  .highlight:hover {
    background-color: #fbb7d6;
  }
  
  /* Icon in Project Buttons */
  .icon-image {
    width: 24px;
    height: 24px;
    margin-left: 1rem;
  }
  