Whenever I hover over a link, it seems to be underlined and the text-decoration: none; doesn't seem to work, possibly due to Bootstrap
I attempted to use !important as well as :hover but unfortunately, it had no effect
header .container #porfolio div a {
text-decoration: none;
}
<header>
<div class="container">
<span id="portfolio">
<div>
<a href="/">PORTFOLIO</a>
</div>
<div>
<a href="/">Maskim</a>
</div>
</span>
</div>
</header>