body {
  font-family: 'DM Sans', sans-serif;
  background: linear-gradient(to bottom, #000000, #0e0e10);
}

::selection {
  background: #7dd3fc33;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fadeIn {
  animation: fadeIn 1s ease-out both;
}
