I noticed that the links I created are still showing in the default color scheme
nav ul li a{
color: #white;
text-decoration: none;
font-size: 18px;
position: relative;
}
nav ul li a::after{
content: '';
width: 0;
height: 3px;
background: #d6799e;
position: absolute;
left: 0;
bottom: -6px;
transition: 0.5s;
}
nav ul li a:hover:after:{
width: 100%;
}
Despite my efforts, I am unable to change the default link colors