/* ===== BASE SITE CSS START ===== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*, *::before, *::after{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}

body{
min-height: 100vh;
background-color: #222;
overflow: hidden;
cursor: none;

}
/* ===== BASE SITE CSS END ===== */
.text{
    position: absolute;
    font-size: 1.5em;
    color: #0f0;
    text-align: center;
    pointer-events: none;
    user-select: none;
    opacity: 0;
    transition: opacity 0.25s;
    animation: animateColor 5s linear infinite;
}

.text::before{
    content: '';
    position: absolute;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background-color: #0f0;
    border-radius: 50%;
}
body:hover .text{
    opacity: 1;
}

.text span{
    position: absolute;
    top: -100px;
    text-transform: uppercase;
    font-weight: 400;
    transform-origin: 0 100px;
}

@keyframes animateColor{
    0%{
        filter: drop-shadow(0 0 5px #0f0) hue-rotate(0deg);
    }
    100%{
        filter: drop-shadow(0 0 15px #0f0) hue-rotate(360deg);
    }

}