/* Bingkai Gambar */
 .border-frame-cerita {
    border: 10px solid purple;
    padding: 10px;
    background: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    width: 100%;
    height: auto;
    transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
 }

 /* Hover Effect */
 .image-container:hover .border-frame-cerita {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3);
 }

 .image-container:nth-child(2) {
  align-self: center;
}

 /* Keyframes untuk Tajuk */
 @keyframes fadeInTitle {
     from {
         opacity: 0;
         transform: translateY(-20px);
     }
     to {
         opacity: 1;
         transform: translateY(0);
     }
 }
