применимы ли псевдоэлементы?

Здравствуйте
Подскажите, правильно ли использование в данном задании пседоэлементов или есть какой-либо более грамотный способ?

Код:

html,
body {
width: 300px;
margin: 0;
padding: 0;
font-size: 18px;
font-family: “Arial”, sans-serif;
background: #ecf0f1;
}

.btn {
width: 250px;
margin: 0 25px;
margin-top: 100px;
padding: 20px 0;
line-height: 20px;
text-align: center;
text-transform: uppercase;
color: white;
background: #2c3e50;
cursor: pointer;
box-shadow:
0 -5px #16a085 inset,
0 5px #16a085 inset,
0 20px 0 -10px #2980b9,
0 -20px 0 -10px #c0392b,
0 40px 0 -20px #3498db,
0 -40px 0 -20px #e74c3c;
}

.btn::before {
content: “”;
display: block;
position: absolute;
width: 125px;
height: 5px;
background: #2ecc71;
top: 100px;
left:25px;
}

.btn::after {
content: “”;
display: block;
position: absolute;
width: 125px;
height: 5px;
background: #2ecc71;
top: 155px;
left:150px;
}

У вас все правильно, только отсутствует относительное позиционирование у .btn.

благодарю за ответ