/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

html {
overflow: scroll;
overflow-x: hidden;
}

::-webkit-scrollbar {
width: 0; /* remove scrollbar space */
background: transparent; /* to make scrollbar invisible */
}

::-webkit-scrollbar-thumb {
background: transparent;
}

body {
background-image: url('https://i7.glitter-graphics.org/pub/1028/1028697ahsqselomu.gif');
background-attachment: fixed;
background-repeat: repeat;
overflow: hidden;
cursor: url(https://cur.cursors-4u.net/anime/ani-12/ani1129.ani), url(https://cur.cursors-4u.net/anime/ani-12/ani1129.png), auto !important;
font-family: verdana;
font-size: 15px;
}

 // change highlight color
::selection {
/* Change highlight background color */
background: #F5276C;
/* Change highlight text color */
color: #FEE7EE;
}


@keyframes slide {
  0%   { background-position-x: 0%; }
  100% { background-position-x: 300vw; }
}

a:link, a:visited {
background: repeating-linear-gradient(-45deg, red 0%, yellow 7.14%, #0f0 14.28%, #0ff 21.42%, cyan 28.56%, blue 35.7%, magenta 42.84%, red 50%);

-webkit-animation: 'slide' 90s infinite linear forwards;
-webkit-text-fill-color: transparent;
-webkit-background-clip: text;
	text-decoration: none;
}

a:hover, a:active {

}