
    <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-color: white;
            padding: 10px;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            width: 100%;
            max-width: 250px;
            text-align: center;
        }

        .gallery-item img {
            width: 100%;
            height: auto;
            border-radius: 5px;
        }

        .gallery-description {
            margin-top: 10px;
            font-size: 14px;
            color: #555;
        }

        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>