#social-container {
  margin: 0;
  padding: 0;
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  text-align: center;
}

#social-container a {
  text-decoration: none;
  color: #fff;
}

#social-container a:hover {
  text-decoration: none;
  color: #fff;
}

#social-container .ul {
  display: flex;
  width: 100%;
}

#social-container .ul .li {
  position: relative;
  display: block;
  background: #666;
  font-size: 30px;
  height: 60px;
  width: 60px;
  color: #171515;
  line-height: 60px;
  border-radius: 50%;
  margin: 0 10px;
  cursor: pointer;
}

#social-container .ul .li:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  background: orange;
  height: 100%;
  width: 100%;
  z-index: -1;
  border-radius: 50%;
  transform: scale(0.9);
  transition: .4s;
}

#social-container .ul .li:hover:before {
  filter: blur(3px);
  transform: scale(1.2);
  box-shadow: 0 0 15px orange;
}

#social-container .ul .li:hover {
  color: orange;
  background: #171515;
  box-shadow: 0 0 15px orange;
  text-shadow: 0 0 15px orange;
}

