body {
    font-family: Arial, sans-serif;
    background: #18191a;
    margin: 0;
    padding: 0;
    color: whitesmoke;
  }

  a {
    color: violet;
    text-decoration: none;
  }

  a:hover{
    text-decoration: underline;
  }

  .main-nav ul{
     list-style: none;
    background: darkcyan;
    margin: 0;
    padding: 10px;
    display: flex;
    justify-content: center;
  }

  h1 {
    text-align: center;
  }

  .hero {
    display: flex;
    justify-content: center;
    padding: 50px 20px;
  }

  .hero-container {
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 900px;
    width: 100%;
  }

  .profile-pic {
  width: 180px;       /* passport-ish width */
  height: 260px;      /* passport-ish height */
  object-fit: cover;  
  border-radius: 6px;
  border: 3px solid violet;
  flex-shrink: 0;
}

  .intro-text {
    max-width: 600px;

  }

  .intro-text h1 {
  margin: 0;
}

.tagline {
  opacity: 0.8;
}