html, body {
    height: 100%;
    margin: 0;
}

#map {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

#centerMarker {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    background-image: url('https://unpkg.com/leaflet@1.9.4/dist/images/marker-icon.png');
    background-size: contain;
    background-repeat: no-repeat;
    transform: translate(-50%, -100%) rotate(0deg);
    z-index: 100;
    pointer-events: none;
}

/* Evt. overlay-indhold ovenpå kortet */
.content {
    position: relative;
    justify-self: right;
    z-index: 1;
    color: white;
    font-family: sans-serif;
    padding: 1rem;
    background-color: #00000030;
    margin: 1rem;
    text-shadow: 0 0 4px black;
}

input {
    width: 100%;
}
