* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
body ul {
  position: relative;
  display: flex;
  gap: 25px;
}
body ul li {
  position: relative;
  list-style: none;
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 60px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.1);
  transition: 0.5s;
}
body ul li:hover {
  width: 180px;
  box-shadow: 0px 10px 25px rgba(0, 0, 0, 0);
}
body ul li:hover::before {
  opacity: 1;
}
body ul li:hover::after {
  opacity: 0.5;
}
body ul li:hover ion-icon {
  transform: scale(0);
  color: white;
  transition-delay: 0.25s;
}
body ul li:hover .title {
  transform: scale(1);
  transition-delay: 0.25s;
}
body ul li::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 60px;
  background: linear-gradient(45deg, var(--i), var(--j));
  opacity: 0;
  transition: 0.5s;
}
body ul li::after {
  content: "";
  position: absolute;
  top: 10px;
  width: 100%;
  height: 100%;
  border-radius: 60px;
  background: linear-gradient(45deg, var(--i), var(--j));
  transition: 0.5s;
  filter: blur(15px);
  z-index: -1;
  opacity: 0;
}
body ul li ion-icon {
  color: #777;
  font-size: 1.75em;
  transition: 0.5s;
  transition-delay: 0.25;
}
body ul li span {
  position: absolute;
}
body ul li .title {
  color: white;
  font-size: 1.1em;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transform: scale(0);
  transition-delay: 0s;
}

@media (max-width: 550px) {
  ul {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}/*# sourceMappingURL=styles.css.map */