.linkedin-holder {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 40px;
  min-height: 220px;
  width: 100%;
  background: rgba(180, 180, 180, 0.3);
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.linkedin-holder:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.35);
}

.linkedin-logo {
  width: 90px;
  height: auto;
  display: block;
}