
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: Arial, sans-serif;
            background-color: #121212;
            color: #ffffff;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            min-height: 100vh;
            margin: 0;
            padding: 1rem;
        }

        header {
            text-align: center;
            margin-bottom: 2rem;
        }

        header h1 {
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
        }

        header p {
            font-size: 1rem;
            color: #aaaaaa;
        }

        #controls {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-bottom: 2rem;
            justify-content: center;
        }

        select, input {
            padding: 0.5rem;
            font-size: 1rem;
            border-radius: 5px;
            border: none;
            background-color: #1e1e1e;
            color: #ffffff;
        }

        button {
            padding: 0.5rem 1rem;
            font-size: 1rem;
            border: none;
            border-radius: 5px;
            background-color: #ff5722;
            color: #ffffff;
            cursor: pointer;
        }

        button:hover {
            background-color: #e64a19;
        }

        #photos {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1rem;
            width: 100%;
            max-width: 1200px;
        }

        .photo-card {
            border-radius: 8px;
            overflow: hidden;
            background-color: #1e1e1e;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
        }

        .photo-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .photo-card p {
            padding: 1rem;
            font-size: 0.9rem;
        }

        footer {
            margin-top: 2rem;
            font-size: 0.9rem;
            color: #777;
        }

        @media (max-width: 600px) {
            header h1 {
                font-size: 2rem;
            }

            select, input, button {
                width: 100%;
            }
        }