/* Fancy blinking terminal cursor */
/* Source: https://github.com/panr/hugo-theme-hello-friend */

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-display: auto;
  /* On Windows this default to Consolas which we implement a sizing workaround for */
  font-family: monospace;
}
 .logo img {
  height: 44px;
}
 .logo__mark {
  margin-right: 5px;
  /* MY EDIT */
  /* Ensure each button is spaced equally apart */
  margin-left: -6px;
}
 .logo__cursor {
  display: inline-block;
  width: 10px;
  height: 1rem;
  background: #fe5186;
  margin-left: 5px;
  border-radius: 1px;
  animation: cursor 1s infinite;
}

@media (prefers-reduced-motion: reduce) {
  .logo__cursor {
    animation: none;
  }
}

@keyframes cursor {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
