.button {
  font-family: 'Poppins', sans-serif; /* Poppins font */
  background-color: #F3BD48; /* Gold background */
  color: #FFFFFF; /* White text */
  padding: 10px 20px;
  border: none;
  text-decoration: none;
  font-size: 16px;
  border-radius: 15px; /* Rounded corners */
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.button:hover {
  background-color: #e6a842; /* Slightly darker gold on hover */
  transform: scale(1.05); /* Slight increase in size on hover */
}

.button:focus {
  outline: none; /* Removes the outline on focus */
}
