This is my unique HTML
.header_menu {
list-style: none;
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
max-width: 100%;
position: fixed;
}
.header_menu__option {
display: inline-block;
font-size: 30px;
font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
padding: 10px;
color: black;
color: inherit;
}
.header_menu__option a:link {
text-decoration: none;
}
<body>
<header>
<ol class="header_menu">
<img class="header_menu__img" src="material/header.png" alt="">
<li class="header_menu__option"><a href="">Home</a></li>
<li class="header_menu__option"><a href="">Portfolio</a></li>
<li class="header_menu__option"><a href="">Appoinments</a></li>
<li class="header_menu__option"><a href="">More</a></li>
</ol>
</header>
</body>
I have experimented with adding color to the .header_menu__option a:link and it has not been effective. Additionally, I have attempted to apply color to other classes without success, however, properties such as font-size and padding are functioning correctly.