/* spec 10.1. */
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-variable.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: block;
}

/* spec 10.1. */
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-variable-italic.woff2') format('woff2');
  font-weight: 100 900;
  font-style: italic;
  font-display: block;
}

h1, p, a, li {
  margin: 0;
  color: black;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: -0.2px;
  font-weight: 475;
}

h1 {
  font-weight: 525;
  margin-bottom: -20px;
}

a {
  -webkit-tap-highlight-color: transparent;
  text-decoration: underline;
  text-decoration-color: #eeeff2;
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
  transition: all var(--transition-duration) var(--transition-easing);
}

a:hover {
  text-decoration-color: #d4d4d8;
}

a:focus {
  outline: none;
  text-decoration-color: #d4d4d8;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

li {
  position: relative;
  padding-left: 16px;
}

li::before {
  content: '';
  position: absolute;
  left: 0.5px;
  top: 9px;
  width: 5px;
  height: 5px;
  /* bug 1 */
  box-shadow: inset 0 0 0 5px black;
  border-radius: 50%;
}

li + li {
  margin-top: 0;
}

ul.spaced li + li {
  margin-top: 10px;
}

::selection {
  background: rgba(0, 0, 0, 0.15);
}

.fonts {
  visibility: hidden;
}

.secondary {
  color: #0006;
}

.hashtag {
  color: #999;
}

@media (hover: none) and (pointer: coarse) {
  h1, p, a, li {
    font-weight: 500;
    letter-spacing: -0.18px;
  }
  
  h1 {
    font-weight: 550;
  }
}
