@tailwind base;
@tailwind components;
@tailwind utilities;

button {
  background-color: rgb(32, 39, 47);
}

@keyframes slide-top {
  0% {
    transform: translateY(0);
  }
  20% {
    transform: translateY(-10);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes jello-horizontal {
  0% {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  100% {
    transform: scale3d(1, 1, 1);
  }
}

.jello-horizontal {
  animation: jello-horizontal 0.9s both;
}

.slide-top {
  animation: slide-top 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
