body {
  font-family: 'Space Grotesk';
  overflow-x: hidden;
}

#WhoAmI {
  white-space: nowrap;
  overflow: hidden;
  border-right: 2px solid;
  animation: blink-cursor 0.8s steps(1) infinite;
}

@keyframes blink-cursor {
  50% {
      border-color: transparent;
  }
}

::selection {
  background: rgba(255, 255, 255, .2)
}

::-webkit-scrollbar {
  width: 4px;
  height: 6px;
}

::-webkit-scrollbar-thumb {
  background-color: rgb(78, 81, 86);
  border-radius: 3px;
}

::-webkit-scrollbar-track {
  background-color: transparent;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: inherit;
  background-size: cover;
  z-index: 0;
}