* {
    cursor: none;
  }
  
  body {
    background-color: rgb(44, 43, 43);
    margin: 0;
  }
  
  #cursor {
    background-color: rgb(61, 244, 5);
    border-radius: 10px;
    height: 8px;
    mix-blend-mode: difference;
    position: absolute;
    width: 8px;
    z-index: 1;
  }

@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;700&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: #413f3f;
    font-family: 'Raleway', sans-serif;
    font-weight: bold;
}
a{
    position: relative;
    display: inline-block;
    padding: 25px 30px;
    margin: 40px 0;
    color: #1d023c;
    text-decoration: none;
    text-transform: uppercase;
    transition: 0.5s;
    letter-spacing: 4px;
    overflow: hidden;
    margin-right: 50px;
   
}
a:hover{
    background: #FFFFFF;
    color: #37065a;
    box-shadow: 0 0 5px #140629,
                0 0 25px #220250,
                0 0 50px #7004d6,
                0 0 200px #4d0371;
     -webkit-box-reflect:below 1px linear-gradient(transparent, rgba(11, 8, 96, 0.333));
}
a:nth-child(1){
    filter: hue-rotate(270deg);
}
a:nth-child(2){
    filter: hue-rotate(110deg);
}
a span{
    position: absolute;
    display: block;
}
a span:nth-child(1){
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
  
