@import url(style.css);

.history-project-page {
    display: flex;
    flex-direction: column; /* Pastikan elemen tersusun ke bawah */
    align-items: center; /* Tengahkan elemen */
}

.history-project-image {
        width: 100%;   /* Sesuaikan lebar */
        height: 400px; /* Atur tinggi */
        object-fit: cover; /* Memotong gambar agar tetap proporsional */
}
.history-project-text {
        position: relative;
    z-index: 2; /* Pastikan teks tidak tertimpa gambar */
}
.history-project-page .history-project-logo .container{
    background: var(--white-color);
}
.history-project-logo .card{
    margin: 10px;
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
    max-width: 100%;
}
.history-project-logo .card img {
    width: 100%;
}
.history-project-logo .card:hover {
    transform: scale(1.05);
}

