/* Body and background */
html{height: 100%;} 
body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: linear-gradient(180deg, #111, #1a1a1a);
    color: #fff;
    text-align: center;
    padding: 80px 20px;
    overflow-x: hidden;
  }

  /* Fade-in animation */
  @keyframes fadeInUp {
    0% {opacity: 0; transform: translateY(30px);}
    100% {opacity: 1; transform: translateY(0);}
  }

  /* Profile picture */
  img.profile {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 30px;
    border: 4px solid #fff;
    animation: fadeInUp 1s ease forwards;
  }

  /* Name */
  h1 {
    font-size: 2.8rem;
    margin: 0;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.3s;
    opacity: 0;
  }

  /* Subtitle */
  p.subtitle {
    font-size: 1.3rem;
    color: #ccc;
    margin: 10px 0 40px;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.5s;
    opacity: 0;
  }

  /* Buttons */
  .buttons a {
    display: block;
    margin: 12px auto;
    padding: 14px 0;
    width: 260px;
    background: #000;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    transition: background 0.3s, transform 0.2s;
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
  }
  .buttons a:nth-child(1){ animation-delay: 0.7s; }
  .buttons a:nth-child(2){ animation-delay: 0.9s; }
  .buttons a:nth-child(3){ animation-delay: 1.1s; }
  .buttons a:nth-child(4){ animation-delay: 1.3s; }
  .buttons a:nth-child(5){ animation-delay: 1.5s; }

  .buttons a:hover {
    background: #333;
    transform: translateY(-2px);
  }

  /* Responsive */
  @media (max-width: 500px) {
    img.profile { width: 140px; height: 140px; }
    .buttons a { width: 200px; }
    h1 { font-size: 2rem; }
    p.subtitle { font-size: 1rem; margin-bottom: 30px; }
  }
