::-webkit-scrollbar {
  width: 4px;
}
::-webkit-scrollbar-track {
  background: #fcfaff;
}
::-webkit-scrollbar-thumb {
  background: #ddd6fe;
}
::-webkit-scrollbar-thumb:hover {
  background: #8b5cf6;
}

body {
  background-color: #fcfaff;
  color: #2e1065;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.font-serif {
  font-feature-settings: "palt";
  letter-spacing: -0.02em;
}

.character-mask {
  mask-image: linear-gradient(to bottom, 
    rgba(0,0,0,1) 0%, 
    rgba(0,0,0,1) 85%, 
    rgba(0,0,0,0) 100%
  );
  -webkit-mask-image: linear-gradient(to bottom, 
    rgba(0,0,0,1) 0%, 
    rgba(0,0,0,1) 85%, 
    rgba(0,0,0,0) 100%
  );
}

#root::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(#8b5cf6 0.5px, transparent 0.5px);
  background-size: 60px 60px;
  opacity: 0.03;
  pointer-events: none;
  z-index: 0;
}