bouncy


<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Embedded Google Map</title>
    <style>
        body, html {
            height: 100%;
            margin: 0;
            padding: 0;
            overflow: hidden; /* Prevents scrolling */
        }
        #black-screen {
            position: fixed; /* Full viewport and fixed position */
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: black; /* Black background color */
            z-index: 999; /* Lower z-index than the map */
        }
        #map {
            position: fixed; /* Keeps the map fixed */
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1000; /* Ensures the map is above the black screen */
        }
    </style>
</head>
<body>
    <div id="black-screen"></div> <!-- Black screen added behind the map -->
    <iframe id="map" src="https://www.google.com/maps/d/embed?mid=143jJ4S_FSfP4DmYDcviIr-DGht9dhqY" style="border:0;" allowfullscreen="" loading="lazy"></iframe>
</body>
</html>