  body {
    filter: drop-shadow(10px 10px 10px rgba(0,0,0,0.1));
    font-family: Courier;
    animation: transitionIn 1s; 
  }
  
  img {
    border-radius: 25px;
    filter: drop-shadow(30px 30px 30px rgba(0,0,0,0.1));
    padding: 8px;
    max-width: 70%;
    height: auto;
  }
  
  @keyframes transitionIn {
    from {
      opacity: 0;
      filter: brightness(0%);
      transform: translateY(50px) rotateX(20deg);
    }
    
    to {
      opacity: 1;
      filter: brightness(100%);
      transform: translateY(0) rotateX(0deg); 
      
     }
     
    

  }