#about-me {
  display: flex;
}

.profile-pic {
  width: clamp(100px, 15vw, 300px);
  background-color: white;
  padding: 0.5vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 2px;
  rotate: -2deg;
  translate: 0px;
  animation: profile-slide 1s ease-out;
  margin-right: 20px;
}


@keyframes profile-slide {

  0% {
    translate: -300px;
    rotate: -5deg;
  }

  90% {
    translate: -1px;
    rotate: -1.95deg;
  }

  100% {
    translate: 0px;
    rotate: -2deg;
  }
}

.profile-pic img:nth-of-type(2) {
  width: 75%;
  image-rendering: pixelated;
}