:root {
  --implica-orange: #F5A623;
  --implica-red: #E63946;
  --text-dark: #2b2b2b;
}

html, body {
  min-height: 100%;
}

body {
  font-family: "Courier New", Courier, monospace;
  margin: 0;
  color: var(--text-dark);
}

.hero {
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% 50%, #ffffff 0%, rgba(255,255,255,0) 55%),
    linear-gradient(135deg,
      rgba(245, 166, 35, 0.35) 0%,
      rgba(245, 166, 35, 0.10) 30%,
      #ffffff 50%,
      rgba(230, 57, 70, 0.10) 70%,
      rgba(230, 57, 70, 0.35) 100%);
  background-color: #fff;
  position: relative;
  overflow: hidden;
}

.container,
.hero > * {
  position: relative;
  z-index: 1;
}

.logo {
  max-width: 100px;
  width: 100%;
  height: auto;
}

h1.display-4 {
  letter-spacing: -0.02em;
  color: var(--text-dark) !important;
  font-family: "Courier New", Courier, monospace;
  font-weight: 700;
}

.typewriter::after {
  content: "|";
  display: inline-block;
  margin-left: 2px;
  color: var(--implica-red);
  animation: blink 1s steps(1) infinite;
}

.typewriter.done::after {
  animation: blink 1s steps(1) infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}

.text-white {
  color: var(--text-dark) !important;
}

p.small {
  color: var(--text-dark) !important;
}

@media (min-width: 768px) {
  .logo {
    max-width: 100px;
  }
  h1.display-4 {
    font-size: 3.5rem;
  }
}
