@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes grow {
  from {
    opacity: 0;
    transform: scaleX(0);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes fade {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.anim {
  opacity: 0;
  animation: rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.anim-line {
  opacity: 0;
  animation: grow 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.anim-fab {
  opacity: 0;
  animation: fade 0.5s ease-out forwards;
}

.d1 {
  animation-delay: 0.15s;
}

.d2 {
  animation-delay: 0.35s;
}

.d3 {
  animation-delay: 0.6s;
}

.d4 {
  animation-delay: 0.8s;
}

.d5 {
  animation-delay: 1.1s;
}

.phone {
  text-decoration: none;
}

a:focus {
  outline: none;
}

a:focus-visible {
  outline: 2px solid #3c2a1e;
  outline-offset: 3px;
}

.instagram {
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
}

@media (prefers-reduced-motion: reduce) {
  .anim,
  .anim-line,
  .anim-fab {
    animation: none;
    opacity: 1;
  }
}
