body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #e0e0e0;
}

.site-header {
  background: #333;
  padding: 1rem;
  background-image: url('images/headerbackground.webp');
}

.nav__link {
  color: white;
  margin-right: 1rem;
  text-decoration: none;
}

.container {
  padding: 2rem;
}

.btn {
  background: #330000;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  text-decoration: none;
}

.project-card {
  background: white;
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 6px;
}

.nav {
  text-align: right;
}

.name{
  text-align: center;
  color: rgb(228, 228, 228);
  font-size: 24px;
  padding-left: device-width;
  padding-right: device-width;

}

footer{
  background-color: #222222;
  position: fixed;
  width: 100%;
  bottom: 0;
  text-align: center;
  color: rgb(228, 228, 228);
  z-index: 10;
}

.me{
  width: 300px;
  height: auto;
  border-radius: 10px;
  display: block;
  margin-left: auto;
  margin-right: auto; 
}

.bio-row{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

td{
  width: 550px;
}

table{
  border-collapse: collapse;
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
}

.lede{
  font-size: 18px;
  line-height: 1.6;
}

.timeline {
  width: 80%;
  margin: 50px auto;
  position: relative;
  padding-left: 20px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  width: 4px;
  background: #8b8b8b;
  top: 0;
  bottom: 0;
}

.timeline-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 60px 0;
}

.timeline-img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #fff;
  box-shadow: 0 0 8px rgba(0,0,0,0.2);
  background: #fff;
  z-index: 10;
}

.timeline-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.timeline-content {
  margin-top: 20px;
  width: 60%;
  text-align: left;
}

.timeline-content h2 {
  margin-bottom: 6px;
  font-size: 1.6rem;
}

.timeline-content h3 {
  font-size: 1rem;
  color: #666;
}

.timeline-content p {
  font-size: 1rem;
  line-height: 1.25;
  color: #333;
  margin: 10px 500px 0 0;
  font-family: Arial, sans-serif;
}

.timeline-item {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s ease-out;
}

.timeline-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.exph2{
  text-align: center;
  margin-top: 20px;
  font-size: 45px;
  font-family: Arial, sans-serif;
}

.lede{
  font-size: 20px;
  line-height: 1.6;
}

.preview{
  width: 80%;
  height: auto;
  border-radius: 10px;
}

.projh1{
  text-align: center;
  margin-bottom: 30px;
}

nav a:hover {
  color: #aa0404
}

.links{
  text-align: center;
  margin-top: 10px;
  margin-bottom: 50px;
  gap: 20px;
}

.links a:hover {
  color: #aa0404
}