When I hover a link it's underline and text-decoration: none; doesn't work because of Bootstrap I think
I tried to use !important and :hover but it doesn't work
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>