/* Outline button */
.custom-button {
  background: transparent;
  border: 1px solid #222222;
  color: #222222;
  padding: 14px 36px;
  margin: 30px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  font-family: "Lato", sans-serif; !important; 
}

.custom-button:hover {
  background: #222222;
  color: white;
  text-decoration: none !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

   