button,
.button {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  background-color: #E2A52A;
  color: #001f3f;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

button:hover,
.button:hover {
  background-color: #ffffff;
  transform: scale(1.03);
  color: #001f3f;
}
