a {
line-height: 1;
display: inline-block;
color:#ffeb3b;
text-decoration:none;
cursor: pointer;
}
a:after {
display: block;
content: "";
height: 2px;
width: 0%;
background-color: #ffeb3b;
transition: width .3s ease-in-out;
}
a:hover:after,
a:focus:after {
width: 100%;
}