<!-- -------------- Created By InCoder -------------- -->
<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="UTF-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Awesome Neumorphism Social Icons - InCoder</title>
  <link rel="stylesheet" href="main.css">
  <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
</head>

<body>
  <div class="container">
    <div class="social-icons">
      <a href="#" class="icon">
        <i class="fab fa-facebook"></i>
      </a>
      <a href="#" class="icon">
        <i class="fab fa-whatsapp"></i>
      </a>
      <a href="#" class="icon">
        <i class="fab fa-instagram"></i>
      </a>
      <a href="#" class="icon">
        <i class="fab fa-twitter"></i>
      </a>
      <a href="#" class="icon">
        <i class="fab fa-linkedin-in"></i>
      </a>
      <a href="#" class="icon">
        <i class="fab fa-github"></i>
      </a>
    </div>
  </div>
</body>

</html>
/* -------------- Created By InCoder -------------- */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.container {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #7c7c7c2e;
}

.social-icons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.icon {
  width: 4rem;
  height: 4rem;
  margin: 1rem;
  display: flex;
  color: #202020;
  font-size: 1.5rem;
  border-radius: 50%;
  align-items: center;
  text-decoration: none;
  justify-content: center;
  background-color: #ececec;
  box-shadow: 10px 10px 15px #c7c4c4, -10px -10px 15px #fff;
}

.icon:focus {
  box-shadow: inset 5px 5px 5px #c7c4c4, inset -5px -5px 5px #fff;
}

.fa-facebook {
  color: #1877f2;
}

.fa-whatsapp {
  color: #25d366;
}

.fa-instagram {
  color: #e1306c;
}

.fa-twitter {
  color: #1da1f2;
}

.fa-linkedin-in {
  color: #0077b5;
}

.fa-github {
  color: #333;
}
Run Pen

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.