        body {
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            background-color: #f0f0f0;
        }

        .instax-frame {
            width: 1275px;
            height: 850px;
            padding: 20px;
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: top;
            position: relative;
        }

        .photo {
            width: 1080px;
            height: 720px;
            background-image: url('1.JPG');
            background-size: cover;
            background-position: center;
            border-radius: 5px;
        }

        .caption {
            margin-top: 30px;
            font-size: 15px;
			font-weight: bold;
            color: #555;
            font-family: Arial, sans-serif;
        }
		
		.instax-frame {
			width: 100%;
			max-width: 1280px;
			height: auto;
			aspect-ratio: 3 / 2;
		}

		.photo {
			width: 90%;
			height: 90%;
		}
		
		figure {
			margin: 0;
		}