CSS
3
Вклад в тег
.button {
margin-top: 100px;
}
.button-item {
display: block;
max-width: 260px;
border: 3px solid #328888;
border-radius: 5px;
color: white;
text-align: center;
padding: 10px 20px;
background-color: #215858;
}
.button a:hover {
background-color: #328888;
border: 2px solid #215858;
}
<div class="button">
<a href="#" class="button-item">Lorem ipsum</a>
</div>