<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{
  color: #ffffff;
  background-color: #ae2121;
  box-shadow: 
  0 0 5px #ae2121, 
  0 0 25px#ae2121, 
  0 0 50px #ae2121, 
  0 0 100px #ae2121;
}

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.