body {
  background-color: #0b0c1e;
  font-family: "Segoe UI", "Helvetica Neue", sans-serif;
  margin: auto;
  max-width: 70ch;
  color: #e0e6f7;
  background-image: radial-gradient(white 1px, transparent 0);
  background-size: 40px 40px;
  animation: stars 60s linear infinite;
}

a {
  color: #81a4ff;
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: #ffccff;
}

h1, h2, h3, h4, h5, h6 {
  color: #ffffff;
  font-weight: 700;
  text-shadow: 0 0 5px #3f3fff;
}

code, pre {
  background-color: #1e1f3f;
  color: #b3d9ff;
  padding: 0.2rem 0.4rem;
  border-radius: 5px;
}

@keyframes stars {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 10000px 5000px;
  }
}

/*# sourceMappingURL=my-theme.css.map */