.nickname{
position: absolute;
width: 100%;
background-image: linear-gradient(<?php echo $color['deg']; ?>deg, <?php echo $color[5] ?> 0%, <?php echo $color[6]; ?> 100%);
color: transparent;
-webkit-background-clip: text;
animation: 4s textt ease-in-out infinite;
}
@keyframes textt {
0%{
width: 0;
}
50%{
width: 100px;
}
100%{
width: 240px;
}
}