body,html{
    padding: 0;
    margin: 0;
    background-color: black;
}

#location{
    position: fixed;
    top: 5px;
    left: 5px;
    padding: 5px;
    background-color: rgba(0, 0, 0, 0.53);
    display: flex;
    flex-direction: column;
    width: 200px;
    color: white;
    font-size: 40px;
}
#map{
    width: 2880px;
    height: 2400px;
    overflow: hidden;
}

.coord{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.lbl{
    width: 30px;
}
#coord_x, #coord_y{
    text-align: right;
}
#point, #point_cursor{
    width: 0;
    height: 0;
    position: absolute;
    left: -100px;
    top: -100px;
}
.cursor{
    transform: translate(-50%,-50%);
}
#point_cursor > img{
    filter: hue-rotate(90deg);
}