
.top-bar::after{
  content: "";
  display: block;
  width: 75%;
  height: 3px;
  border-radius: 5px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-accent);
}

.top-bar {
  position: relative;
}

.social-link:hover {
  mask-composite: subtract;
  -webkit-mask-composite: subtract;
}

/* For WebKit-based browsers (Chrome, Edge, Safari) */

::-webkit-scrollbar {

  width: 6px; /* Width of the scrollbar */

}



::-webkit-scrollbar-track {

  background: #000000; /* Background of the scrollbar track */

  border-radius: 10px; /* Rounded corners for the track */

}



::-webkit-scrollbar-thumb {

  background: #ffffff; /* Color of the scrollbar thumb */

  border-radius: 10px; /* Rounded corners for the thumb */

  /* border: 2px solid #1d1616;  */

}



/* For Firefox */

* {

  scrollbar-width: thin; /* Makes the scrollbar thinner */

  scrollbar-color: #ffffff #000000; /* Thumb color and track color */

}

.markdown-content {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.markdown-content pre {
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.markdown-content code {
  white-space: inherit;
}


