@font-face {
  font-family: "Altertype";
  src: url('altertype-Regular.otf') format('opentype');
  font-display: swap;
}

html, body {
  font-family: "Altertype", Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #000;
  color: #fff;
  min-height: 100vh;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}


.content {
  margin-bottom: 60px;
}

.biography-section {
  margin-bottom: 40px;
}

h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  opacity: 0.9;
  border-bottom: 1px solid #333;
  padding-bottom: 10px;
}

p {
  line-height: 1.8;
  margin-bottom: 20px;
  opacity: 0.8;
}

#bio-content {
  white-space: pre-line;
  line-height: 1.8;
  opacity: 0.8;
}

ul {
  list-style: none;
  padding: 0;
}

li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
  opacity: 0.8;
}

li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #fff;
}

strong {
  opacity: 1;
  font-weight: bold;
}

.cv-button {
  display: inline-block;
  margin-top: 30px;
  padding: 15px 30px;
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.cv-button:hover {
  background-color: #fff;
  color: #000;
}

.contact-link {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin: 35px 0 0;
  padding: 14px 22px;
  box-sizing: border-box;
  color: #000;
  background-color: #fff;
  border: 2px solid #fff;
  text-decoration: none;
  font-size: inherit;
  overflow-wrap: anywhere;
  transition: all 0.3s ease;
}

.contact-link:hover {
  color: #fff;
  background-color: #000;
}

.navigation {
  text-align: center;
}

.nav-link {
  color: #fff;
  text-decoration: none;
  padding: 15px 30px;
  border: 1px solid #fff;
  transition: all 0.3s ease;
  display: inline-block;
}

.nav-link:hover {
  background-color: #fff;
  color: #000;
}

/* Responsive */
@media screen and (max-width: 768px) {
  h2 {
    font-size: 1.5rem;
  }
  
  .container {
    padding: 20px 15px;
  }
}
