* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family: 'Poppins', sans-serif;
    background-color: #121212;
    color: #f1f1f1;
    line-height: 1.6;
    animation: fadeIn 2s ease-in-out;
  }
  header {
    background-color: #1c1c1c;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  nav a {
    color: #f1f1f1;
    text-decoration: none;
    padding: 10px 20px;
    font-size: 16px;
    transition: background-color 0.3s ease;
  }
  nav a:hover {
    background-color: #575757;
    border-radius: 5px;
  }
  .logo {
    font-size: 24px;
    font-weight: 500;
    color: #f1f1f1;
  }
  .social-icons a {
    color: #f1f1f1;
    font-size: 24px;
    margin: 0 10px;
    transition: color 0.3s ease;
  }
  .social-icons a:hover {
    color: #3498db;
  }
  .about-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px;
    text-align: center;
  }
  .about-container h1 {
    font-size: 36px;
    color: #f1f1f1;
    margin-bottom: 20px;
    animation: rollIn 2s ease-out;
  }
  .about-container p {
    font-size: 18px;
    color: #d1d1d1;
    margin-bottom: 30px;
    animation: fadeInUp 2s ease-out;
  }
  .about-container img {
    width: 30vw;
    height: 25vw;
    border-radius: 8px;
    margin-bottom: 20px;
    animation: fadeIn 2s ease-in-out;
  }
  .contact-info {
    margin-top: 30px;
    color: #d1d1d1;
  }
  .contact-info p {
    font-size: 18px;
  }
  .contact-info i {
    margin-right: 10px;
  }
  @keyframes fadeIn {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  @keyframes rollIn {
    0% {
      transform: rotateY(-90deg);
      opacity: 0;
    }
    100% {
      transform: rotateY(0);
      opacity: 1;
    }
  }
  @keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  @media (max-width: 768px) {
    .about-container h1 {
      font-size: 28px;
    }
    .about-container p {
      font-size: 16px;
    }
  }