
        .container1 {
            width: 100%;
            /* height: 200px; */
            display: flex;
            justify-content: center;
            align-items: center;
            background: linear-gradient(90deg, #f77b7b, #6ed3f7);
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            transition: background 0.5s ease-in-out, box-shadow 0.5s ease-in-out;
        }

        .container1:hover {
            background: linear-gradient(90deg, #6ed3f7, #f77b7b);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }

        .content {
            display: flex;
            align-items: center;
            color: white;
            font-size: 5em;
            font-weight: bold;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            transition: transform 0.5s ease-in-out;
            cursor: pointer;
            text-align: center;
        }

        .content:hover {
            transform: scale(1.1);
        }

        .custom-camera-icon {
            width: 90px; /* Adjusted size to fit the icon better */
            height: 90px; /* Adjusted size to fit the icon better */
            margin: 0 25px;
            background-image: url('http://googleusercontent.com/file_content/8'); /* Your custom camera icon image */
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            display: inline-block;
            /* If the icon itself has a background, you might need to adjust filter or blend modes */
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .content {
                font-size: 3.5em;
            }
            .custom-camera-icon {
                width: 70px;
                height: 70px;
                margin: 0 15px;
            }
        }

        @media (max-width: 480px) {
            .content {
                font-size: 2.5em;
            }
            .custom-camera-icon {
                width: 50px;
                height: 50px;
                margin: 0 10px;
            }
        }