body {
  font-family: "Times New Roman";
  margin: 20;
  padding: 0;
  background-image: url("bgw6.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
}


a {
  color: #000000;
  text-decoration: underline;  /* Always visible underline */
  position: relative;
  transition: color 0.3s, font-weight 0.3s;
}

a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px; /* below the visible underline */
  width: 0;
  height: 2px;
  background-color: #3b2618; /* the hover line color */
  transition: width 0.3s ease;
}

a:hover {
  color: #3b2618;
  text-decoration: underline;  /* Still show default underline */
}

a:hover::after {
  width: 100%;
}

.signature-typed {
  font-family: "Courier New", monospace;
  font-size: 1.2em;
  color: #444;
  background-color: #f5f5f5;
  display: block;
  width: fit-content;
  margin: 40px auto;
  padding: 6px 12px;
  border: 2px dashed #aaa;
  border-radius: 5px;
}