/* desktop */
@media (min-width: 700px) {
    #map {
        height: 80vh;
    }
}

/* mobile */
@media (max-width: 700px) {
    #map {
        position: fixed;
        z-index: -1;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
    }
}
