body{
    background-color: rgb(34, 34, 34);
    color:rgb(147, 133, 185);
}

a{
    color: #eb7d24;
    text-decoration: none;
    position: relative;
    transition: 150ms;
}
a:hover{
    color: #ff9b48;
}
a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #ff9b48;
    transition: width 0.15s ease;
}
a:hover::after {
    width: 100%;
}