/* Basic resets from index.css and App.css */
body {
  margin: 0;
  display: flex;
  place-items: center;
  min-width: 320px;
  min-height: 100vh;
  background-color: #ffffff; /* Default background */
  font-family: 'Inter', system-ui, Avenir, Helvetica, Arial, sans-serif;
}

.App {
  margin: 0 auto;
  text-align: center;
  width: 100%;
}

/* Custom animation to replace framer-motion rotate: 360 */
@keyframes spin-custom {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

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

/* Ensure links work visually */
a {
  font-weight: 500;
  text-decoration: inherit;
}
