a.external-link {
    /* For right to left languages */
    direction: ltr;
    display: inline-block;
  }
  
  a.external-link::after {
    /* \00A0 is a non-breaking space
          to make the mark be on the same line as the link
      */
    content: "\00A0[↪]";
  }
  
  a.internal-link::after {
    /* \00A0 is a non-breaking space
          to make the mark be on the same line as the link
      */
    content: "\00A0↪";
  }

code.language-sh span {
  color: #c5c8c6 !important; /* or any preferred color */
}
  
img[src$=".png"] {
  border-radius: 10px;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.4);
}