@config "../tailwind.config.js";

@tailwind base;
@tailwind components;
@tailwind utilities;

html {
  scroll-behavior: smooth;
  cursor: default;
}

body {
  min-height: 500px;
  min-width: 280px;
  margin: 0px;
}

img {
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  pointer-events: none;
}

ul {
  padding: 0;
}

p {
  margin: 0;
}

a {
  @apply text-tundora no-underline outline-none;
  -webkit-tap-highlight-color: transparent !important;
}

@keyframes bounce-y {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2vh);
  }
}

.animate-bounce-soft {
  animation: bounce-y 1.5s infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.animate-spin {
  animation: spin 1s linear infinite;
}
