.button {
  background: #867070;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease,
              transform 0.2s ease,
              box-shadow 0.3s ease;
}

.button:hover {
  background: #D5B4B4;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px #F5EBEB;
}

.button:active {
  transform: translateY(0);
  box-shadow: none;
}