I tried to change font color in sticky nav bar. When scrolling down, I want to change color of nav background red to another color and font color from white to black. I tried to change font color but it can't be changed.
body{
font-size:16px;
color:#FFFFFF;
}
header {
position: fixed;
top: 0;
left: 0;
right: 0;
background-color: #D02F32;
clear: both;
width: 100%;
min-height: 87px;
}
/* ==========================================================================
Navigation Style
========================================================================== */
nav{
/*background-color:#7E7E7E;*/
padding:2px;
width:800px;
margin:0 auto;
float:right;
margin-top:1%;}
nav ul{
list-style-type:none;
text-align:center;
font-size: 1em;}
nav li{
display:inline;
padding:6px;}
nav a:hover{
color:#82ED8E;}
nav a{
text-decoration:none;
color:#FFFFFF;
font-weight:bold;}
<body>
<header class="sticky">
<div class="wrapper">
<nav class="menu-top-container">
<ul id="top-nav" class="menu">
<li><a href="index.html">Steps</a></li>
<li><a href="index.html">questions</a></li>
<li><a href="index.html">answers</a></li>
</ul>
</nav>
</div>
</header>
</body>