html {
  color-scheme: dark;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
}

::selection {
  background: rgba(140, 242, 204, 0.3);
  color: #ffffff;
}

.fade-up {
  opacity: 0;
  animation: fade-up 0.75s ease forwards;
}

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.2s;
}

.delay-3 {
  animation-delay: 0.3s;
}

.delay-4 {
  animation-delay: 0.4s;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
