@keyframes fade-in{
  0% {opacity: 0;}
  100% {opacity: 1;}
}

*{
  box-sizing: border-box;
  image-rendering: pixelated;
  scrollbar-width: thin;
  scrollbar-color: #29272575 transparent;
}

::selection{
  background: #292725;
  color: #fff;
}

body{
  background: #fff;
  color: #292725;
  font-family: 'Times New Roman', sans-serif;
  font-size: 12px;
  margin: 0;
  animation: fade-in 0.25s steps(3);
}