body {
    font-family: 'Segoe UI', sans-serif;
    background: #17172f;
    margin: 0;
    padding: 0;
  }

  .navbar{
    background-color: black;
    min-height: max-content;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 1rem;
    align-items: center;
    padding: 0.5rem 0
}

.nav-image{
    width: 8rem;
    height: auto;
    float: left;
    
}

.nav-logo{
    font-size: 2.5rem;
    font-family: "bakbak one",sans-serif;
    color: white;
    width: max-content;
}

.nav-links{
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.nav-links a{
    color: white;
    font-size: 1.063rem;
    font-family: "roboto",sans-serif;
    border-radius: 3px;
    text-decoration: none;
}

.nav-links>a:hover{
    color: rgba(255, 255, 255, 0.8);
}

  
  .about-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 40px auto;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
  }

  
  
  .profile-photo {
    flex: 1 1 300px;
    min-width: 300px;
    background: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .profile-photo img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  
  .about-text {
    flex: 2;
    padding: 40px;
    animation: fadeInUp 1s ease forwards;
  }
  
  .about-text h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
  }
  
  .about-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
  }
  
  /* Animations */
  .fade-in {
    animation: fadeIn 2s ease;
  }
  
  .slide-in {
    animation: slideInLeft 2s ease;
  }
  
  .bounce-in {
    animation: bounceIn 1.5s ease;
  }
  
  /* Keyframes */
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  @keyframes slideInLeft {
    from { transform: translateX(-50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
  }
  
  @keyframes bounceIn {
    0% { transform: scale(0.9); opacity: 0; }
    60% { transform: scale(1.05); opacity: 1; }
    100% { transform: scale(1); }
  }
  
  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  /* Responsive */
  @media(max-width: 768px) {
    .about-container {
      flex-direction: column;
    }
  }
