::-moz-selection { /* Code for Firefox */
  color: rgb(102, 0, 255);
  background: rgb(211, 168, 255);
}

::selection {
  color: rgb(102, 0, 255);
  background: rgb(211, 168, 255);
}

::-webkit-scrollbar {
  width: 8px;
  height: 10px;
}

::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px rgb(128, 128, 128); 
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: #bf1eff;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #d05bff; 
}

*{
  margin: 0;
  padding: 0;
}

html{
  background-image: url(media/bg6.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  scroll-behavior: smooth;
}
body{
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 40px;
  background-image: linear-gradient(to right,rgb(106, 0, 148), rgb(255, 35, 251));
  -webkit-background-clip: text;
  color: transparent;
  font-family: "Times New Roman", Times, serif;
  text-shadow: 0px 5px 10px rgba(0, 0, 0, 0.4);
}
