.back-to-top {
  background-color: unset;
  padding: 5px;
  width: 100%;
  text-align: center;
}

.back-to-top a {
  display: inline;
  cursor: pointer;
  font-weight: bold;
  text-align: center;
}

.back-to-top a:hover {
  border-bottom: 2px solid black;
  text-decoration: none;
}
.custom-link {
  text-decoration: none; /* Loại bỏ gạch chân mặc định */
  color: black; /* Màu chữ */
  position: relative;
  padding-bottom: 3px; /* Khoảng cách giữa chữ và border */
  font-size: 1.2rem;
  font-weight: 600;
}

.custom-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px; /* Độ dày border */
  background-color: black; /* Màu border */
  transition: width 0.3s ease-in-out; /* Hiệu ứng xuất hiện dần */
}

.custom-link:hover::after {
  width: 100%; /* Khi hover vào, border sẽ mở rộng hết chiều rộng */
}

footer {
  position: relative;
  background: unset;
  font-size: 13px;
  margin-top: 100px;
}

footer h5 {
  font-weight: bold;
  font-size: 15px;
  margin-bottom: 15px;
}

footer a {
  text-decoration: none;
  color: var(--text-color);
  display: block;
  margin-bottom: 5px;
}

/* footer a:hover {
  text-decoration: underline;
} */
