@import url("./css_variables.css");

html{
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

.animate-blink {
  animation: blink 1s infinite;
}
