
* {
  margin: 0;
  padding: 0;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100vw;
}
#apple,
#imdb,
#youtube,
#facebook {
  font-size: 3em;
background-color: #CA2481;
background: linear-gradient(to right, #75398D, #C2388D,#E75D90, #E75D90);
-webkit-text-fill-color: transparent;
-webkit-background-clip: text;
  box-shadow: 2px 2px 2px #00000080, 10px 1px 12px #00000080,
    2px 2px 10px #00000080, 2px 2px 3px #00000080, inset 2px 2px 10px #00000080,
    inset 2px 2px 10px #00000080, inset 2px 2px 10px #00000080,
    inset 2px 2px 10px #00000080;
  border-radius: 30%;
  padding: 11px 19px;
  margin: 10 15px;
  animation: animate 3s linear infinite;
  text-shadow: 0 0 50px #CA2481, 0 0 100px #CA2481, 0 0 150px #CA2481,
    0 0 200px #CA2481;
}
#twitter {
  animation-delay: 0.3s;
}
#facebook {
  animation-delay: 0.7s;
}
#github {
  animation-delay: 0.1s;
}

@keyframes animate {
  from {
    filter: hue-rotate(0deg);
  }
  to {
    filter: hue-rotate(360deg);
  }
}
