.blink {
  -webkit-animation: 1s linear infinite condemned_blink_effect; /* for Safari 4.0 - 8.0 */
  animation: 1s linear infinite condemned_blink_effect;
}

/* for Safari 4.0 - 8.0 */
@-webkit-keyframes condemned_blink_effect {
  0% {
    visibility: hidden;
  }
  50% {
    visibility: hidden;
  }
  100% {
    visibility: visible;
  }
}

@keyframes condemned_blink_effect {
  0% {
    visibility: hidden;
  }
  50% {
    visibility: hidden;
  }
  100% {
    visibility: visible;
  }
}

a.icon {
  text-decoration: none;
}

.user-description {
  border-style: solid;
  border-width: 5px;
  border-color: black;
  margin: 16px;
  padding: 16px;
}

header {
  margin-bottom: 16px;
}

footer {
  margin-top: 128px;
}

body {
  /* bootstrap secondary */
  background: rgb(108, 117, 125);
}

.mermaid svg {
  display: block;
  margin: auto;
}

.post p img {
  display: block;
  margin: auto;
  border-radius: 5px;
  max-width: 100%;
  vertical-align: center;
}

.post p {
  margin-top: 0;
  margin-bottom: 1rem;
  text-indent: 2rem;
}

.post ul,
.post ol,
.post dl {
  margin-left: 1rem;
}

pre {
  white-space: pre;
  overflow-x: auto;

  tab-size: 4;
  -moz-tab-size: 4;

  padding: 0;
}

.post pre code mark {
  background-color: white;
}

/* Quotes */
.post blockquote {
  padding: 0.5rem 1.5rem;
  margin: 0;
  margin-bottom: 1rem;
  border-left: 0.5rem solid #e5e5e5;
  color: #7a7a7a;
}
.post blockquote p {
  text-indent: 0rem;
  margin-right: -1rem;
}
.post blockquote ul,
.post blockquote ol,
.post blockquote dl {
  margin-left: -1rem;
}
.post blockquote p:last-child,
.post blockquote ul:last-child,
.post blockquote ol:last-child,
.post blockquote dl:last-child {
  margin-bottom: 0;
}
