<style>
    h1 {
        text-align: center;
        margin-top: 30px;
        color: #333;
    }

    .gallery-container {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        padding: 20px;
        justify-items: center;
    }

    .gallery-item {
        background: none;
        padding: 0;
        border-radius: 0;
        box-shadow: none;
        width: 100%;
        max-width: 250px;
        text-align: center; /* Ini penting untuk center teks */
    }

    .gallery-item img {
        width: 80%;
        height: 230px;
        object-fit: cover;
        border-radius: 10%;
        display: block;
        margin: 0 auto; /* Biar gambar juga di tengah */
        border: none;
    }

    .gallery-description {
        margin-top: 10px;
        font-size: 14px;
        color: #555;
        text-align: center; /* Pastikan teks di tengah */
    }

    a.upload-link {
        display: block;
        text-align: center;
        margin: 30px;
        font-size: 18px;
        color: #007BFF;
        text-decoration: none;
    }

    a.upload-link:hover {
        text-decoration: underline;
    }

    /* Responsive untuk tablet */
    @media (max-width: 768px) {
        .gallery-container {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    /* Responsive untuk mobile */
    @media (max-width: 480px) {
        .gallery-container {
            grid-template-columns: 1fr;
        }
    }
</style>
