.icontainer {
  display: flex;
  justify-content: center;
  align-items: center;
  /*height: 5vh;*/
  /*width: 100vw;*/
}

#vk {
  font-size: 1em;
  background-color: #18191f;
  color: #fff;
  box-shadow: 2px 2px 15px #00000080, 3px 1px 15px #00000080,
    2px 2px 15px #00000080, 2px 2px 15px #00000080, inset 2px 2px 15px #00000080,
    inset 2px 2px 15px #00000080, inset 2px 2px 15px #00000080,
    inset 2px 2px 15px #00000080;
  border-radius: 10px;
  padding: 4px 5px 2px 6px;
  margin: 0 10px;
  animation: animate 3s linear infinite;
  text-shadow: 0 0 25px #0072ff, 0 0 20px #0072ff, 0 0 25px #0072ff,
    0 0 40px #0072ff;
}

#vk {animation-delay: 0.3s;}

@keyframes animate {
  from {
    filter: hue-rotate(0deg);
  }
  to {
    filter: hue-rotate(360deg);
  }
}
