html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter';
  opacity: 0;
  animation: fadeInBody 0.5s ease-out forwards;
}

@keyframes fadeInBody {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}