/* Home Page Specific */
.custom-hero {
  max-width: 800px;
  margin: auto;
}
.custom-hero .btn {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 20px;
  border-radius: 8px;
  border: 1px solid var(--btn-border-color);
  color: grey;
}

.cd {
  font-family: 'Fira Code', monospace;
}

/* End of Home Page Specific */

@keyframes blink {
  0%,
  50%,
  100% {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}

.cursor {
  display: inline-block;
  width: 8px;
  height: 1.5rem;
  background: #fe5186;
  margin-left: 5px;
  animation: blink 3s infinite;
}
