
<style>
        body {
            font-family: Arial, sans-serif;
            background-color: #f4f4f4;
            text-align: center;
        }

        h1 {
            margin-top: 20px;
        }

        .gallery {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin: 30px;
            flex-wrap: nowrap;   /* Prevent wrapping */
        }

        .photo {
            background: #ffffff;
            padding: 5px;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
            width: 200px;
			height:330px;
		
			
        }
        .photo01 {
            background: #ffffff;
            padding: 10px;
            border-radius: 6px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
            width: 400px;
			height: 100px;
        }
        .photo img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            border-radius: 5px;
        }
	 .photo01 img {
            width: 100%;
            height: 150px;
            object-fit: cover;
            border-radius: 5px;
        }

        .description {
            margin-top: 10px;
            font-size: 14px;
            color: #333;
        }
    </style>
