#whoami {
  height: 60vh;
  position: relative;

  background-color: var(--obsidian);
}



#whoami .elioImg {
  position: absolute;
  bottom: clamp(-100px, -5vh, -500px);
  left: 0;
  width: min(30vh, 50vw);
  opacity: 0;
  animation: elioEnter .7s ease-out forwards;

}

@keyframes elioEnter {
  0% {
    transform: rotate(30deg) translate(-30%, 30%) scale(0.8);
  }


  100% {
    transform: rotate(20deg) translate(-10%, 10%) scale(1);
    opacity: 1;
  }
}




#whoami h1 {
  position: absolute;
  top: 10%;
  left: 0;
  margin: 0;
  transform: rotate(-10deg) translate(-5%, -30%);
  background-color: black;
  color: white;
  padding: 50px;
  font-size: clamp(50px, 5vw, 100px);
}

#whoami h2 {
  position: absolute;
  top: 20%;
  left: 0;
  background-color: white;
  color: black;
  font-size: 40px;
  ;

  transform: rotate(-10deg) translate(100px, 0%);
}

#whoami .description {
  position: absolute;
  bottom: 10%;
  right: 0;
  width: 40%;
  background-color: black;
  color: white;
  padding: 20px;
  font-size: 20px;
  font-weight: bold;
}