body {
  font-family: 'Georgia', serif;  
  background-color: #f9f9f9;  
  color: #4f4f4f;  
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


header {
  background-color: #e0f0d9;  
  padding: 40px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
}

header h1 {
  font-size: 2.5em;
  color: #3d5a47;  
  margin: 0;
  font-weight: bold;
}

nav {
  position: fixed;
  top: 20px;
  right: 20px;
  display: flex;
  gap: 20px;
}

nav a {
  color: #3d5a47;
  font-weight: bold;
  text-decoration: none;
  font-size: 1.2em;
}

nav a:hover {
  color: #4a8a53;  /* Slightly brighter green on hover */
}

/* Profile Section */
.home {
  display: flex;
  flex-direction: column;
  align-items: center;  /* Centers horizontally */
  justify-content: center;  /* Centers vertically */
  padding: 60px 20px;
  text-align: center;
}

.home img {
  border-radius: 0%;  
  border: 5px solid #d1e8c3; 
  margin-bottom: 20px;
  width: 240px; 
  height: 350px; 
  object-fit: cover;
}

.home h2 {
  font-size: 2.5em;
  color: #3d5a47;
  margin: 10px 0;
}

.home h3 {
  font-size: 1.3em;
  color: #6c7d58; 
  margin: 0;
}

.bio {
  background-color: #ffffff;
  padding: 40px 20px;
  margin: 40px auto;
  max-width: 800px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.bio h2 {
  font-size: 2.2em;
  color: #3d5a47;
  text-align: center;
  margin-bottom: 20px;
}

.bio p {
  font-size: 1.1em;
  line-height: 1.6;
  color: #4f4f4f;
  margin-bottom: 20px;
}

.contact {
  background-color: #e0f0d9;
  padding: 40px 20px;
  margin: 40px auto;
  max-width: 800px;
  border-radius: 10px;
  text-align: center;
}

.contact h3 {
  font-size: 2em;
  color: #3d5a47;
  margin-bottom: 20px;
}

.contact a {
  margin: 0 10px;
  display: inline-block;
}

.contact img {
  width: 50px;
  height: 50px;
  transition: transform 0.3s ease;
}

.contact img:hover {
  transform: scale(1.1);
}

.letter {
  background-color: #e0f0d9;
  padding: 40px 20px;
  margin: 40px auto;
  max-width: 800px;
  border-radius: 10px;
  text-align: center;
}

.letter h2 {
  font-size: 2.5em;
  color: #3d5a47;
  margin-bottom: 20px;
}

.letter img {
  width: 100%;  
  max-width: 600px;  
  height: auto;  
  object-fit: contain;  
  border: 2px solid #d1e8c3;  
  border-radius: 10px;
}

.download-link {
  display: inline-block;
  background-color: #3d5a47;  
  color: white;
  padding: 12px 25px;
  font-size: 1.2em;
  text-decoration: none;
  border-radius: 8px;
  margin-top: 20px;
  text-align: center;
  transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.download-link:hover {
  background-color: #4a8a53;  
  transform: scale(1.05);  
}

.download-link:active {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.download-link:focus {
  outline: 2px solid #4a8a53;
  outline-offset: 4px;
}


@media (max-width: 768px) {
  header h1 {
    font-size: 2em;
  }

  nav {
    top: 10px;
    right: 10px;
  }

  .home img {
    width: 180px;
    height: 250px;
  }

  .bio, .contact, .letter {
    padding: 30px 20px;
  }

  .letter img {
    width: 100%;
    max-width: 90%;
    height: auto;
  }
}

