<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">  /* Base Reset */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to right, #e0eafc, #cfdef3);
    color: #222;
    padding: 2rem;
  }
  

.about-container {
    padding: 60px 40px;
    min-height: 100vh;
    background-color: #d0dff4;
    color: #6A5063;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 1.2s ease-in-out;
  }
  
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    max-width: 1200px;
    width: 100%;
  }
  
  .about-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }
  
  .profile-image {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 50%;
  }
  
  .title {
    font-size: 1.8rem;
    font-weight: 600;
    text-align: center;
  }
  
  .resume-button,
  .back-button {
    background-color: #6A5063;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(106, 80, 99, 0.3);
    transition: all 0.3s ease, transform 0.2s ease;
  }
  
  .resume-button:hover,
  .back-button:hover {
    background-color: #594054;
    color: #f0e9ec;
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(106, 80, 99, 0.45);
  }
  
  
  .about-card {
    background-color: #fff;
    color: #333;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    line-height: 1.8;
    font-size: 1.1rem;
    animation: fadeInUp 1.5s ease-out;
  }
  
  .about-me {
    font-size: 2.2rem;
    color: #6A5063;
    margin-bottom: 20px;
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @media (max-width: 768px) {
    .about-grid {
      grid-template-columns: 1fr;
      gap: 40px;
    }
  
    .about-card {
      padding: 20px;
    }
  }
  

</pre></body></html>