:root {
  --background: white;
  --text-color: black;
}

@media (prefers-color-scheme: dark) {
  :root {
    --background: #1f1f1f;
    --text-color: white;
  }
}


@keyframes gradientShift {
  50% {
    background-position: 100% 50%;
    /* Move to the right */
  }

  0%,
  100% {
    background-position: 0% 50%;
    /* Return to the left for a smooth loop */
  }
}

.animated-background {
  /* Define your radial gradient */
  background: radial-gradient(circle at center, rgba(41, 164, 216, 0.2) 0%, rgba(17, 160, 219, 0) 70%);
  /* Make the background larger than the container to allow for movement */
  background-size: 200% 200%;
  /* Apply the animation */
  animation-name: gradientShift;
  animation-duration: 15s;
  /* Adjust for desired speed (e.g., 5s for faster, 15s for slower) */
  animation-iteration-count: infinite;
  /* Loop indefinitely */
  animation-timing-function: ease-in-out;
  /* Smooth acceleration and deceleration */
}

html {
  overflow: hidden;
  background: var(--background);
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding: 0;
  color: var(--text-color);
  overflow: hidden;
}

body {
  margin: 0;
  padding: 0;
  overflow: hidden;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
    "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
    sans-serif;
}