/*
 * With Tailwind you usually need very little custom CSS - the utility classes
 * handle most of what you want. This file is here to show that you CAN still
 * write your own styles alongside Tailwind whenever you want, just like with
 * any other CSS file.
 *
 * Below: a small custom touch that Tailwind does not provide out of the box -
 * the color of text the user has selected with their mouse on this page.
 */

::selection {
  background-color: pink;
  color: black;
}
