body {
    margin: 0;
    font-family: 'Courier New', monospace;
    background-color: #000;
    color: #eee;
    line-height: 1.6;
  }
  
  .container {
    max-width: 800px;
    margin: auto;
    padding: 20px;
  }
  
  .header {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .profile-pic {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid #eee;
    margin-bottom: 15px;
  }
  
  .tagline {
    font-style: italic;
    color: #aaa;
  }
  
  .section {
    margin-bottom: 30px;
  }
  
  h1, h2 {
    color: #fff;
  }
  
  ul {
    padding-left: 20px;
  }
  
  a {
    color: #00ffff;
    text-decoration: none;
  }
  
  a:hover {
    text-decoration: underline;
  }
  