header{border-bottom:1px solid #ca0505;margin-bottom:1rem}footer{border-top:1px solid #222;margin-top:1rem}*{box-sizing:border-box;padding:0;margin:0}body,html{background-color:tomato;font-family:sans-serif;line-height:1.5;min-height:100%}main{display:grid;grid-template-areas:"menu" "map";background-color:#32cd32;grid-template-columns:repeat(5,1fr);grid-template-rows:repeat(3,1fr);gap:10px;width:100vw;height:100vh}#menu{background-color:bisque;grid-area:menu;grid-column:1 / 3;grid-row:1;height:100vh;padding:1rem;min-width:30rem}a{color:#00e;text-decoration:none}#map{grid-area:map;min-height:480px;height:100vh;grid-column:2 / 6;grid-row:1 / 3}.leaflet-control-container .leaflet-routing-container .leaflet-routing-container-hide{display:none}@media only screen and (max-width:600px){body,html{background-color:#ff0}main{gap:0}#menu{display:none}#map{grid-area:map;min-height:480px;height:100vh;width:100vw}}
