html
<button class="btn" href="#">P A S T E L</button>
css
.btn{
width:150px;
height:150px;
line-height: 150px;
font-size:18px;
font-weight: bold;
text-align: center;
color: #fff;
background: #78ff77;
border-radius: 50%;
border: solid 1px #FFF;
/* 影 */
box-shadow: 0 0 0 6px #78ff77;
/* マウスオーバー時 */
transition: 0.3s;
-webkit-transition: 0.3s;
}
.btn:hover{
background: #78ffff;
box-shadow: 0 0 0 6px #78ffff;
}