/**,
*:before,
*:after {
  box-sizing: border-box;
}

pre[class*="language-"] {
  position: relative;
  overflow: auto;
*/
  /* make space  */
/*  margin: 5px 0;
  padding: 1.75rem 0 1.75rem 1rem;
  border-radius: 10px;
}

pre[class*="language-"] button {
  position: absolute;
  top: 5px;
  right: 5px;

  font-size: 0.9rem;
  padding: 0.15rem;
  background-color: #828282;

  border: ridge 1px #7b7b7c;
  border-radius: 5px;
  text-shadow: #c4c4c4 0 0 2px;
}

pre[class*="language-"] button:hover {
  cursor: pointer;
  background-color: #bcbabb;
}

main {
  display: grid;
  max-width: 600px;
  margin: 20px auto;
}

h1 {
  font-size: 1.3rem;
}
*/

pre[class*="language-"] {
    position: relative;
    margin: 5px 0 ;
    padding: 1.75rem 0 1.75rem 1rem;
  
    /* more stuff */
  }
  
  pre[class*="language-"] button{
    position: absolute;
    top: 5px;
    right: 5px;
  
    /* more stuff */
  }
  
.highlight-wrapper {
    display: block;
  }
  
  .highlight {
    position: relative;
    z-index: 0;
    padding: 0;
    margin: 0;
    border-radius: 4px;
  }
  
  .highlight > .chroma {
    color: #d0d0d0;
    background-color: #212121;
    position: static;
    z-index: 1;
    border-radius: 4px;
    padding: 10px;
  }
  
  .chroma .lntd:first-child {
    padding: 7px 7px 7px 10px;
    margin: 0;
  }
  
  .chroma .lntd:last-child {
    padding: 7px 10px 7px 7px;
    margin: 0;
  }
  .copy-code-button {
    color: #272822;
    background-color: #FFF;
    border-color: #272822;
    border: 2px solid;
    border-radius: 3px 3px 0px 0px;

    /* right-align */
    display: block;
    margin-left: auto;
    margin-right: 0;

    margin-bottom: -2px;
    padding: 3px 8px;
    font-size: 0.8em;
}

.copy-code-button:hover {
    cursor: pointer;
    background-color: #F2F2F2;
}

.copy-code-button:focus {
    /* Avoid an ugly focus outline on click in Chrome,
       but darken the button for accessibility.
       See https://stackoverflow.com/a/25298082/1481479 */
    background-color: #E6E6E6;
    outline: 0;
}

.copy-code-button:active {
    background-color: #D9D9D9;
}

.highlight pre {
    /* Avoid pushing up the copy buttons. */
    margin: 0;
}
  
  .copyable-text-area {
    position: absolute;
    height: 0;
    z-index: -1;
    opacity: .01;
  }
  
.clipboard-button {
    position: absolute;
    right: 0;
    padding: 2px 7px 5px 7px;
    margin: 5px;
    color: #767676;
    border-color: #767676;
    background-color: #ededed;
    border: 1px solid;
    border-radius: 6px;
    font-size: 0.8em;
    z-index: 1;
    opacity: 0;
    transition: 0.1s;
  }
  .clipboard-button > svg {
    fill: #767676;
  }
  .clipboard-button:hover {
    cursor: pointer;
    border-color: #696969;
    background-color: #e0e0e0;
  }
  .clipboard-button:hover > svg {
    fill: #696969;
  }
  .clipboard-button:focus {
    outline: 0;
  }
  .highlight {
    position: relative;
  }
  .highlight:hover > .clipboard-button {
    opacity: 1;
    transition: 0.2s;
  }
  
  .chroma [data-lang]:before {
    position: absolute;
    z-index: 0;
    top: -22px;
    left: 0px;
    content: attr(data-lang);
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    padding: 5px 10px 7px;
}