#services {
  text-align: center;
  padding-top: 25px;
}
#services .card {
  width: 190px;
  height: 254px;
  background: #191E29;
  position: relative;
  display: flex;
  place-content: center;
  place-items: center;
  overflow: hidden;
  border-radius: 20px;
  margin: auto;
  border-width: 0;
  /* .card:hover:before {
    background-image: linear-gradient(180deg, rgb(81, 255, 0), purple);
    animation: rotBGimg 3.5s linear infinite;
  } */
}
#services .card i {
  color: #fff;
  z-index: 2;
  margin: 10px;
}
#services .card p {
  z-index: 1;
  color: white;
  font-size: 1em;
  font-family: monospace;
}
#services .card::before {
  content: "";
  position: absolute;
  width: 100px;
  background-image: linear-gradient(180deg, #4fa6d1, #01C38D);
  height: 130%;
  animation: rotBGimg 3s linear infinite;
  transition: all 0.2s linear;
}
@keyframes rotBGimg {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
#services .card::after {
  content: "";
  position: absolute;
  background: #191E29;
  inset: 5px;
  border-radius: 15px;
}/*# sourceMappingURL=services.css.map */