@font-face {
  font-family: "Cairo";
  src: url("/portfolio/shared/fonts/cairo-latin.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}
.demo-banner {
  font-family: "Cairo", sans-serif;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1200;
  background: #151515d4;
  backdrop-filter: blur(15px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  letter-spacing: 0.05em;
  text-align: center;
  display: flex;
  padding-block: 0.5rem;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: bannerFadeIn 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  animation-delay: 0.5s;
}
@media (max-width: 640px) {
  .demo-banner {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
  }
}
@keyframes bannerFadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.banner-brand {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
}
@media (min-width: 641px) {
  .banner-brand {
    font-size: 1.4rem;
  }
}
.banner-link {
  margin-inline-start: 0.5rem;
  font-weight: 500;
  color: #f3c25c;
  text-decoration: underline;
  text-decoration-color: #f3c25c;
  text-underline-offset: 3px;
}
