.note {
  max-width: 35rem;
  margin: 0 auto;
}
.note-header {
  padding-top: 3rem;
  margin-bottom: 3rem;
}
.note-footer {
  padding: 2rem 0;
}
.note-date {
  color: var(--color-text-grey);
}
ul.note-tags {
  display: block;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  line-height: 2em;
}
.note-tags li {
  margin-right: .5rem;
  display: inline;
}
.note-tags a:before {
  /* content: "#"; */
}
.note-tags a {
  /*padding: .5rem 1rem;*/
  /*display: block;*/
  /*background: var(--color-light);*/
  background: #f9f9f9;
  color: #777;
  font-size: .95em; 
  padding: 5px;
  border-radius: 5px;
}
.note-tags a:hover {
  /*background: var(--color-black);
  color: var(--color-white);*/
  /*background: none !important;*/
  color: #000; 
  background: #f5ff00; 
  text-decoration: none;
}
@media (prefers-color-scheme: dark) {
  .note-tags a:hover {
    /*color: var(--color-text-darkmode);*/
  }
  .note-tags a {
    background: #202020; /*#0e0e0e;*/
  }

}
