@media only screen and (min-width: 0) {
  body {
    background: #24273a;
    color: #cad3f5;
    font-family: "Inter", sans-serif;
    font-weight: normal;
    max-width: 56.25rem;
    margin: 0 auto;
    padding: 0 1rem;
  }

  h1,
  h2,
  h3 {
    color: #cad3f5;                     /* Text */
  }
  a {
    box-shadow: inset 0 0 0 0 #54b3d6;
    color: #7dc4e4;                     /* Sapphire */
    display: inline-block;
    margin: 0 -.25rem;
    padding: 0 .25rem;
    text-decoration: none;
    transition: color .3s ease-in-out, box-shadow .3s ease-in-out;
  }

  /* Hover / active state */
  a:hover,
  a:active {
    box-shadow: inset 100px 0 0 0 #8087a2; /* Overlay 1 */               
    color: #7dc4e4;                     /* Sapphire */
    text-decoration: none;

  }



}
  a.dead-link {
    color: #ee99a0;                     /* Maroon */
    text-decoration: none;

  }

  hr {
    color: #cad3f5;
  }
}