@import url("altro.css");
@import url("nav.css");
@import url("buts.css");
@import url("flexbox.css");
@import url("new.css");

/*@import url("prova.css");
*/
/*
.gradient {
  background-image: linear-gradient(to right, #6a11cb 0%, #2575fc 100%);
  color: white;
  border: none;
  padding: 12px 24px;
  font-size: 16px;
  border-radius: 50px; 
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
	text-decoration: none;
}

.gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}	*/

/*
.ghost {
  background-color: transparent;
  color: #333;
  border: 2px solid #333;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 5px;
text-decoration: none;
}

.ghost:hover {
  background-color: #333;
  color: #fff;
}*/
/*
.fill {
  background: none;
  border: 2px solid #2ecc71;
  color: #2ecc71;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color 0.4s;
  z-index: 1;
	text-decoration: none;
}

.fill::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background-color: #2ecc71;
  transition: height 0.4s;
  z-index: -1;
}

.fill:hover {
  color: #fff;
}

.fill:hover::before {
  height: 100%;
}
*/
.neumo {
  background: #e0e5ec;
  color: #333;
  border: none;
  padding: 15px 30px;
  border-radius: 15px;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 6px 6px 12px #b8b9be, -6px -6px 12px #fff;
  transition: all 0.2s ease;
text-decoration: none;
}

.neumo:active {
  box-shadow: inset 6px 6px 12px #b8b9be, inset -6px -6px 12px #fff;
}
.btn-ripple {
  background-color: #ff4757;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  outline: none;
  position: relative;
  overflow: hidden;
text-decoration: none;
}

.btn-ripple:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  border-radius: 100%;
  transform: scale(1, 1) translate(-50%);
  transform-origin: 50% 50%;
}

.btn-ripple:focus:not(:active)::after {
  animation: ripple 1s ease-out;
}

@keyframes btn-ripple {
  0% { transform: scale(0, 0); opacity: 1; }
  100% { transform: scale(20, 20); opacity: 0; }
}
