Собственно, сам эффект:
Код html :
<a href="#!" class="center"><span></span>Здравствуй мир</a>
Код css :
.center {
position: relative;
top: 50%;
left: 50%;
transform: translate(-51%, -49%);
text-decoration: none;
color: #216c00;
font-size: 48px;
margin: 0;
padding: 0 0 6px;
}
.center::before {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 0;
height: 6px;
background-color: #216c00;
border-bottom: 6px solid #b21db7;
transition: 2s;
}
.center:hover::before {
width: 100%;
}
.center::after {
content: '';
position: absolute;
bottom: -6px;
left: 25%;
width: 0;
height: 6px;
background-color: #216c00;
transition: .5s;
transition-delay: .5s;
}
.center:hover::after {
width: 50%;
}
.center span {
display: block;
position: absolute;
bottom: 0;
left: 25%;
width: 50%;
height: 6px;
background-color: #fff;
}
Оригинальный код был несколько изменён, цвет подчёркивания и начальную позицию заменил с absolute на relative.