* {
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  width: 100%;
  height: 100vh;
  background: #e3edf7;
}
h1 {
  font-weight: normal;
  text-transform: uppercase;
  font-size: 25px;
  letter-spacing: 4px;
  padding: 200px 0 100px;
  color: #555;
  text-align: center;
}

.social-media {
  display: flex;
  justify-content: center;
}

a {
  display: flex;
  background: #e3edf7;
  height: 75px;
  width: 75px;
  margin: 0 15px;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 6px 6px 10px -1px rgba(0, 0, 0, 0.15),
    -6px -6px 10px -1px rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 0, 0, 0);
  transition: transform 0.5s;
}

a i {
  font-size: 35px;
  color: #777;
  transition: transform 0.5s;
}

a:hover {
  box-shadow: inset 4px 4px 6px -1px rgba(0, 0, 0, 0.2),
    inset -4px -4px 6px -1px rgba(255, 255, 255, 0.7),
    -0.5px -0.5px 0px rgba(255, 255, 255, 1),
    0.5px 0.5px 0px rgba(0, 0, 0, 0.15), 0px 12px 10px -10px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.01);
  transform: translateY(2px);
}

a:hover i {
  transform: scale(0.9);
}

a:hover .fa-facebook{
  color: #3b5998;
}
a:hover .fa-whatsapp{
  color: #4fce5d;
}
a:hover .fa-twitter{
  color: #00acee;
}
a:hover .fa-instagram{
  color: #f1484f;
}
a:hover .fa-youtube{
  color: #f00;
}
