Oбъект с классом link отображается красным даже когда я не навожусь на него
body
{
font-family: "Helvetica";
}
header
{
z-index: 999;
top: 0;
right: 0;
width: 100%;
background: rgba(0,0,0,0.8);
backdrop-filter: blur(20px);
position: fixed;
display: flex;
box-sizing: border-box;
justify-content: space-between;
align-items: center;
padding: 0px 250px;
}
.text
{
font-size: 20px;
cursor: pointer;
}
ul
{
list-style: none;
}
li
{
display: inline-block;
padding: 0px 20px;
}
.link, .text
{
font-size: 18px;
color: rgba(225,225,225,0.8);
text-decoration: none;
}
.link, .text:hover
{
color: #ff0000;
}