body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  font-family: sans-serif;
}

.boh__dither-gradient-circle {
  position: relative;
  border-radius: 5rem;
  width: 10rem;
  height: 10rem;
  background:  linear-gradient(
    rgba(0, 0, 0, 1),
    rgba(255, 255, 255, 0)
  );

  &::after {
    position: absolute;
    border-radius: 5rem;
    width: 10rem;
    height: 10rem;
    content: '';
    background: url(./dot.png) repeat;
  }
}

.boh__overview-container {
  margin-left: 1.5rem;
}

h1 {
  margin: 0 0 .25rem;
}

.boh__overview-container__profile-links {
  display: flex;
  margin-bottom: 1.5rem;
  font-family: monospace;

  span {
    margin: 0 .5rem;
  }

  a {
    font-size: 1rem;
  }
}

ul {
  margin: 0;
}

a {
  font-family: monospace;
  text-decoration: none;
  color: black;

  &:active,
  &:hover {
    color: black;
    font-weight: 800;
    cursor: pointer;
  }
}

p {
  margin: .75rem 0 .125rem 0;
}