html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

header {
    margin: 0 auto;
    padding: 0;
    width: 100%;
    height: 60px;
    float: left;
}

main {
    height: calc(100% - 120px);
    width: 100%;
    float: left;
}
footer {    
    margin: 0 auto;
    padding: 0;
    height: 60px;
    width: 100%;
    float: left;
}

h1 {
    margin: 0;
}

p { 
    margin: 0;
}

.box {
    width: 100%;
    height: 100%;
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.header {
    width: 100%;
    height: 100%;
    color: #ffffff;
    background-color:#282828;
}
.title {
    float: left;
}
.title.text {
    font-size: x-large;
}

.global-nav {
    float: right;
}
.global-nav li a {
    list-style: none;
    text-decoration: none;
}
.global-nav li a:visited {
    color: white;
}
.global-nav li a:hover {
    text-decoration: underline;
}
.map-nav {
    float: right;
}

.row {
    width: 100%;
}
.row.text {
    padding: 5px;
}
.row.text.center {
    text-align: center;
}

.btn:hover {
    cursor: pointer;
}
.btn.square {
    width: 200px;
    height: 160px;
    padding: 0.5em;
    background-color: white;
    border: 1px solid #282828;
    text-align: center;
    vertical-align: middle;
    box-shadow: 2px 2px #202020;
    font-size: large;
}

#wrap {
    clear: both;
}

#map {
    height: 100%;
}

#nav_home_btn {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0);
    border-color: white;
    border-style: none;
}
#nav_shome_btn:focus {
    outline: 0;
}

#map_present_location_btn {
    width: 40px;
    height: 40px;
    position: absolute;
    left: calc(100% - 40px - 10px);
    top: 120px;
    background-color: white;
    border: darkgray;
    border-radius: 20px;
    box-shadow: 0 0 8px darkgray;
    font-size: large;
}

#map_present_location_btn:focus {
    outline: 0;
}

#map_menu {
    position: absolute;
    height: calc(100% - 60px - 60px);
    width: 150px;
    top: 60px;
    left: calc(100% - 150px);
    background-color: white;
}

ul.map-menu{
    margin: 0;
    padding: 0;
    list-style: none;
}

ul.map-menu li {
    padding: 10px;
}

#map_menu_btn {
    width: 40px;
    height: 40px;
    position: absolute;
    left: calc(100% - 40px - 10px);
    top: 70px;
    background-color: white;
    border: darkgray;
    border-radius: 20px;
    box-shadow: 0 0 8px darkgray;
    font-size: large;
}

#map_menu_btn:focus {
    outline: 0;
}

.svg_map_present_location {
    transition: all 0.3s ease 0s;
    stroke: gray;
}
.svg_map_present_location:hover {
    stroke: black;
}
.svg_map_present_location_active {
    stroke: black;
}