* {
  margin: 0;
  padding: 0;
}
body {
  height: 100vh;
  width: 100vw;
  background: #18191f;
}
.container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100vw;
}
#resume,
#photo,
#telegram,
#instagram,
#github,
#linkedin {
  font-size: 8em;
  background-color: #18191f;
  color: #fff;
  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: 29px;
  padding: 11px 19px;
  margin: 0 40px;
  animation: animate 3s linear infinite;
  text-shadow: 0 0 50px #0072ff, 0 0 100px #0072ff, 0 0 150px #0072ff,
    0 0 200px #0072ff;
}
#resume {
  animation-delay: 0.2s;
}
#photo {
  animation-delay: 0.1s;
}
#telegram {
  animation-delay: 0.3s;
}
#linkedin {
  animation-delay: 0.7s;
}
#github {
  animation-delay: 0.1s;
}

@keyframes animate {
  from {
    filter: hue-rotate(0deg);
  }
  to {
    filter: hue-rotate(360deg);
  }
}

@media screen and (max-width:928px){
#resume,
#photo,
#telegram,
#instagram,
#github,
#linkedin {
  font-size: 6em;
  padding: 10px 20px;
  margin: 0 30px;
}
}

@media screen and (max-width: 748px){
 .container {
  flex-direction: column;
}
#resume,
#photo,
#telegram,
#instagram,
#github,
#linkedin {
  font-size: 4.5em;
  padding: 20px 30px;
  margin: 30px 0px;
}
}

/* create a hover with animation and bigger size */
#resume:hover,
#photo:hover,
#telegram:hover,
#instagram:hover,
#github:hover,
#linkedin:hover {
    font-size: 10em;
    animation: animate 3s linear infinite;
    text-shadow: 0 0 50px #0072ff, 0 0 100px #0072ff, 0 0 150px #0072ff,
        0 0 200px #0072ff;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
}
#resume,
#telegram,
#instagram,
#github,
#linkedin {
    transition: all 0.5s ease-in-out;
}