html, body {
    height: 100%;
    margin: 0;
}

body {
    overflow: visible;
}

#lightbox {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    background: rgba(0,0,0,.9);
    width: 100%;
    flex-direction: column;
    z-index: 1000;
}

#lightbox img {
    width: 500px;
    border-radius: 8px;
    object-fit: cover;

}

#closebtn {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    cursor: pointer;
    font-size: 50px;
}

main {
    display: flex;
    justify-content: center;
    align-content: center;
}

img, polygon, svg {
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none;      /* IE 10 and 11 */
  user-select: none;         /* Standard syntax */
  -webkit-tap-highlight-color: transparent; /* Removes blue box on mobile tap */
}

#map-wrapper {
    position: relative;
    margin: 10px 0 10px 0;
    border-radius: 50px;
    overflow: clip;
    opacity: 0.8;
}

#map-wrapper img {
    display: block;
}

polygon:hover {
    cursor: pointer;
}

footer {
    margin: 20px 0 0 0;
}