<style>
.menu-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0;
}

.menu-button {
  display: inline-block;
  padding: 12px 24px;
  border: 2px solid #000;
  border-radius: 30px;
  background-color: #fff;
  color: #000;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.menu-button:hover {
  background-color: #000;
  color: #fff;
}
</style>