* {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
}

body {
   font-family: Georgia, serif;
   background: white;
   color: black;
   line-height: 1.6;
}

 main {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 20px;
 }
 
 /* Intro section */
 .intro {
    text-align: center;
    margin-bottom: 20px;
 }
 
 .intro h1 {
    font-size: 2.5rem;
    font-weight: normal;
    letter-spacing: -1px;
 }
 
 .tagline {
    font-size: 1.1rem;
    color: #333;
    font-style: italic;
    margin-bottom: 10px;
 }
 
 .tagline a {
    color: #0066cc;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-bottom-color 0.2s ease;
 }
 
 .tagline a:hover {
    border-bottom-color: #0066cc;
 }
 
   .pdf-container {
      position: relative;
      width: 100%;
      margin-top: 20px;
   }

   .cv-embed {
      width: 100%;
      height: 1100px;
      border: 1px solid #ddd;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
   }
 
/* Responsive */
@media (max-width: 600px) {
   main {
      padding: 40px 15px;
   }
   
   .intro h1 {
      font-size: 2rem;
   }
   
    .cv-embed {
       height: 900px;
    }
}