<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">

    <meta
        name="viewport"
        content="width=device-width, initial-scale=1.0, viewport-fit=cover"
    >

    <title>Party Camera</title>

    <link rel="stylesheet" href="style.css">
</head>

<body>

    <main class="camera-app">

        <header>
            <div class="logo">PARTY CAMERA</div>
            <div id="counter">PHOTO 001</div>
        </header>

        <section class="camera-frame">

            <video
                id="camera"
                autoplay
                playsinline
                muted>
            </video>

            <canvas id="canvas"></canvas>

            <div id="flash"></div>

            <div id="developScreen">
                <div class="polaroid">
                    <img id="preview">
                    <div class="polaroid-bottom">
                        DEVELOPING...
                    </div>
                </div>
            </div>

        </section>

        <div class="controls">

            <button id="switchCamera">
                ↻
            </button>

            <button id="shutter">
                <div class="shutter-inner"></div>
            </button>

            <div class="control-spacer"></div>

        </div>

        <p class="instructions">
            Take the photo. We'll keep the memory.
        </p>

    </main>

    <script src="app.js"></script>

</body>
</html>