.instagram {
  position: relative;
  width: 32px;
  height: 32px;
  background: radial-gradient(circle at 30% 110%,
    #ffdb8b 0%, #ee653d 25%, #d42e81 50%, #a237b6 75%, #3e57bc 100%);
  border-radius: 7px;
  box-shadow: 0px 3px 8px 0.2px rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  transition: .2s linear;
}

.instagram:hover {
  transform: translateY(-2px);
}

.instagram::after {
  content: "";
  position: absolute;
  top: 6px;
  right: 6px;
  border: 1.5px solid #fff;
  height: 20px;
  width: 20px;
  border-radius: 5px;
}

.instagram::before {
  content: "";
  position: absolute;
  top: 11px;
  right: 11px;
  border: 2px solid #fff;
  height: 9px;
  width: 9px;
  border-radius: 50%;
}

.instagram span {
  position: absolute;
  display: block;
  top: 8px;
  right: 8px;
  width: 2.5px;
  height: 2.5px;
  background-color: #fff;
  border-radius: 50%;
}
