<div class="main">
  <button class="works">메뉴 버튼</button>
</div>
body{
  background-color: #1D2025;
}

.main{
  text-align: center;
  margin-top: 20px;
}

.works{
  position: relative;
  width: 150px;
  height: 45px;
  font-size: 18px;
  font-weight: bold;
  border: none;
  background-color: rgb(255, 255, 255);
  transition: 0.5s cubic-bezier(0.47, 0, 0.75, 0.72);
  cursor: pointer;
}

.works:hover{
  top: -5px;
  left: -5px;
  box-shadow: 
  5px 5px 5px #e0d967,
  0 0 50px #e0d967;
}

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.