* {
  margin: 0;
  box-sizing: border-box;
}
body {
  font-family: "Plus Jakarta Sans", sans-serif;
  background-color: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100dvh;
  margin: 0;
}
h1,
h2,
h3 {
  font-family: "Outfit", sans-serif;
}
.hard-shadow {
  box-shadow: 4px 4px 0px 0px #1e293b;
}
.hard-shadow-sm {
  box-shadow: 2px 2px 0px 0px #1e293b;
}
.dot-grid {
  background-color: #fffdf5;
  background-image: radial-gradient(#e2e8f0 2px, transparent 2px);
  background-size: 24px 24px;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(5deg);
  }
}
.animate-float {
  animation: float 6s ease-in-out infinite;
}
@keyframes pop {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.animate-pop {
  animation: pop 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
.typing-cursor::after {
  content: "|";
  display: inline-block;
  margin-left: 1px;
  animation: blink 0.7s step-end infinite;
  color: #1e293b;
}
.custom-scrollbar::-webkit-scrollbar {
  width: 6px;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
  background: #e2e8f0;
  border-radius: 10px;
  border: 2px solid #1e293b;
}
