* {
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f2f2fe;
}

.icons a {
  text-decoration: none;
  display: inline-flex;
  width: 100px;
  height: 100px;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  margin: 10px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);

  background-size: 100% 200%;
  background-position: 0% 5%;
  transition: background-position 1s ease-out, color 1s ease-out;
}

.icons a:nth-child(1) {
  color: #1976d3;
  background-image: linear-gradient(#fff 50%, #1976d3 50%);
}

.icons a:nth-child(2) {
  color: #f44236;
  background-image: linear-gradient(#fff 50%, #f44236 50%);
}
.icons a:nth-child(3) {
  color: #03a9f5;
  background-image: linear-gradient(#fff 50%, #03a9f5 50%);
}

.icons a:hover{
  background-position: 0% 100%;
  color: #fff;
}