Я пытался сделать мой текст прозрачным, чтобы он стал точно таким же цветом, как и мой фон, меняющий цвет: < /p>
body{
animation: 10000ms ease-in-out infinite color-change; padding: 5px 5%;
}
@keyframes color-change {
0% {
background-color:#0047ff;
}
50% {
background-color:#6f0ce8;
}
100% {
background-color:#0047ff;
}
}
ul {
list-style-type:none;
}
#navbar{
font-weight: bolder;
font-size: 33px;
background-color: black;
color: white;
border-radius: 0.9rem;
margin: 0.9rem;
transition: 0.3s;
text-decoration:none
}
Подробнее здесь: https://stackoverflow.com/questions/698 ... t-html-css