
.home-icon {
  display: inline-block;
  margin-right: 1.2rem;
  margin-left: 2.0rem;
}
.icon {
  width: clamp(1.5rem, 2vw + 1rem, 2.5rem);
  height: clamp(1.5rem, 2vw + 1rem, 2.5rem);
  display: block;
}
.icon:hover {
  transform: scale(1.04);
  transition-duration: 0.25s;
}
.icon:active {
  transform: scale(0.9);
  transition-duration: 0.25s;
}
.github-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

@keyframes PicZoom {
  0% {
    filter: blur(5rem);
    transform: scale(0.0);
    opacity: 0;
  }
  40% {
    filter: blur(3rem);
    transform: scale(0.3);
    opacity: 0;
  }
  100% {
    filter: blur(0);
    transform: scale(1.0);
    opacity: 1;
  }
}
.portrait-zoom {
  background: linear-gradient(
    to right,
    rgba(50, 48, 48, 0.15) 0%,
    rgba(85, 6, 6, 0.1) 10%,
    rgba(28, 1, 33, 0.15) 66%,
    rgba(53, 6, 61, 0.15) 100%
    );
  box-shadow: 1.25rem 0 2.5rem rgba(110, 158, 224, 0.3);
  border-radius: 50%;
  margin-bottom: 1.5rem;
  padding: 0.65rem;
  max-width: 17.5rem;
  height: auto;
  animation: PicZoom 3.5s ease-in;
  transform-origin: 0% 50%;
}


.zertifikat {
  height: 20vh;
  width: auto;
  object-fit: cover;
  border-width: 0.5rem;
  border-style: ridge;
  border-color: rgba(72, 18, 137, 0.8);
  border-radius: 10%;
  transition: transform 1.5s ease;
}
.zertifikat:hover {
  transform: scale(1.1);
}
.zertifikat:first-child {
  margin-right: 2rem;
}
.zertifikat-links {
  margin-right: 2rem;
}