.discover-button {
  display: inline-block;
  vertical-align: middle;
  height: 44px;
  line-height: 44px;
  padding: 0 25px;
  background-color: #404040;
  color: #faf8f5 !important;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  
  /* THIS REMOVES THE UNDERLINE */
  text-decoration: none !important; 
  
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-align: center;
  font-family: inherit;

  /* Adds a little space around the button */
  margin: 10px 0;

}

/* Ensure the underline doesn't come back on hover */
.discover-button:hover {
  background-color: #FF7518 !important;
  text-decoration: none !important;
  color: #faf8f5 !important;
}