body {
    font-family: Arial, sans-serif;
    margin: 0;
    overflow: hidden;
}

#map {
    width: 100vw;
    height: 100vh;
}

.land {
    fill: #ccc;
    stroke: #000;
    stroke-width: 0.5px;
}

.graticule {
    fill: none;
    stroke: #777;
    stroke-width: 0.5px;
    stroke-opacity: 0.5;
}

#info {
    position: absolute;
    bottom: 5vh;
    right: 0vw;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 10px;
    border-radius: 5px;
    font-family: Arial, sans-serif;
    font-size: clamp(14px,1.5vw,28px);
}