.notes {
  /* display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  grid-gap: 1.5rem;
  grid-auto-rows: 1fr; */

  max-width: 35rem;
  margin: 0 auto;
}

.note {
  /* border: 2px solid #000; */
  margin-bottom: 1.325rem;
}

.note h2 {
  font-size: 1.25em;
  margin-bottom: 0;
}

.note a:hover {
  color: blue;
  text-decoration: underline;
}

.note a:focus {
  color: red;
}

.note time {
  font-size: 0.875em;
}

.notes-categories {
  font-weight: 600;
  margin-bottom: 4rem;
  text-align: center;
  text-transform: capitalize;
}

.notes-categories .tags li {
  display: inline-block;
  padding: 0 0.5rem;
  margin-bottom: 0.75rem;
}


