* {
  font-size: 16px;
}

span.ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: ripple 600ms linear;
  background-color: rgba(255, 255, 255, 0.7);
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

button {
  position: relative;
  overflow: hidden;
  transition: background 400ms;
  padding: 1rem 2rem;
  font-size: 1.5rem;
  border-radius: 0.5rem!important;
  cursor: pointer;
}
