body {
    padding: 0;
    margin: 0;
    overflow: hidden;
    font-family: sans-serif;
    box-sizing: border-box;
    border: 0px solid orange;
}

#map {
    display: flex;
    flex-direction: column;
    width: 100vw;
    height: 100vh;
}

#map h1 {
    z-index: 1;
    text-align: center;
    margin: 0;
}

@media (orientation: landscape) {
    #map h1 {
        font-size: large;
    }
}

@media only screen and (orientation: landscape) and (max-width: 1300px) {
    #map h1 {
        font-size: large;
    }
}

@media only screen and (orientation: landscape) and (max-width: 700px) {
    #map h1 {
        font-size: medium;
    }
}

#map_center {
    background-color: white;
    flex: 1;
}

#map_img {
    width: 100%;
    position: absolute;
    margin: auto;
    outline: 0px solid red;
}

#map_player {
    background-color: white;
    padding: 0.5ex;
    z-index: 10;
    _opacity: 0.5;
}

#map_time {
    color: black;
    font-size: x-large;
    font-family: Inconsolata, monospace;
    text-align: center;
    outline: 0px solid red;
    margin-left: 0.5ex;
    display: none;
}

#map_time2 {
    position: absolute;
    bottom: 1.2cm;
    width: 100%;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    left: 0;
    text-align: center;
    font-size: large;
    text-shadow: 1px 1px white, -1px -1px white;
}

#map .mini {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 80px;
    height: 80px;
    /* cursor: pointer; */
    outline: 1px solid gray;
}

#map .mini:hover {
    /* outline: 1px solid blue; */
}

/* preview */

#preview {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.5);
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    box-sizing: border-box;
    z-index: 5;
}
#preview nav {
    display: flex;
    align-items: center;
}
#preview video {
    width: 300px;
    height: 300px;
    border: 1px solid white;
    margin-bottom: 1ex;
}


