body{
    overflow: hidden;
    margin: 0;
}

#map {
    width: 100vw;
    height: 100vh;
}

#controls {
    position: absolute;
    top: 1vh;
    left: 50px;
    z-index: 1000;
    max-height: 50vh;
    height: 250px;
    width: 350px;

    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 5px;
}

#controls>*{    
    background-color: rgba(255,255,255,0.5);
    border: 3px solid #FFF;
    border-radius: 8px;
}

#txtCity {
    height: 32px;
    flex-grow: 3;
}

#btnCheckCity {
    height: 40px;
    flex-grow: 1;
}

#log {
    overflow-y: scroll;
    width: 100%;
    height: 100%;
    padding: 5px;
    font-family: sans-serif;
}

#log p {
    margin: 0 0 5px 0;
    cursor: pointer;
}