@tailwind base;
@tailwind components;
@tailwind utilities;

:root {
  --x: 0%;
}
body {
    margin: 0;
}

#fluid
 {
    width: 100%;
    height: 100%;
}

#link {
color: white;
cursor:pointer;
}

#link:hover{
  color: transparent; 
background-clip: text; 
    background-image: linear-gradient(90deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(146, 150, 216, 1) var(--x),
    rgba(255, 255, 255, 1) 100%); 
}