@keyframes glintEffect {
    0% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 50% 50%;
    }
    100% {
        background-position: 100% 100%;
    }
}

.glint-text {
	background-image: url('../assets/textures/glint.png');
    background-size: 100%;
    background-clip: text;
    color: rgba(255, 255, 255, 0.4);
    display: inline-block;
    font-weight: 550;
    position: relative;
    animation: glintEffect 5s infinite linear;
}