/* General Body Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #121212;
    margin: 0;
    padding: 0;
    color: #e0e0e0;
  }
  
  .container {
    max-width: 700px;
    margin: 60px auto;
    padding: 30px;
    background: #1e1e1e;
    border-radius: 16px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
  }
  
  h1 {
    color: #03dac6;
  }
  
  p {
    line-height: 1.6;
    margin-bottom: 30px;
  }
  
  /* Email Link Styling */
  .contact-info {
    text-align: center;
    margin-top: 30px;
  }
  
  .email-link {
    color: #03dac6;
    font-size: 1.2rem;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease, transform 0.2s ease;
  }
  
  .email-link:hover {
    color: #00c4b4;
    transform: scale(1.1);
  }
  
  /* Home Button */
  .home-button {
    position: fixed;
    top: 20px;
    right: 30px;
    text-decoration: none;
    background-color: #03dac6;
    color: #121212;
    padding: 5px 9px;
    border-radius: 8px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    z-index: 999;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  }
  
  .home-button:hover {
    background-color: #00c4b4;
    transform: scale(1.05);
  }
  
  /* Fade Animations */
  .fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.6s ease-out forwards;
  }
  
  .delay-1 { animation-delay: 0.2s; }
  .delay-2 { animation-delay: 0.4s; }
  
  @keyframes fadeUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Responsive */
  @media (max-width: 600px) {
    .container {
      margin: 30px 15px;
      padding: 20px;
    }
  }
  