body
{
    color: black; 
    background-color: #CFCA96; 
    width: 98%; 
    text-align: center; 
    font-size: 40px;
}

/* Rahmen fuer map */
#top, #bottom, #left, #right 
{
    background: #CFCA96;
    position: fixed;
    z-index: 4;
}
#left, #right
{
    top: 0; bottom: 0;
    width: 2.5vh;
}
#left { left: 0; }
#right { right: 0; }
    
#top, #bottom 
{
	left: 0; right: 0;
	height: 2.5vh;
}
#top { top: 0; }
#bottom { bottom: 0; }

/* OSM Karte */
#map
{
    object-fit: contain;
    margin: auto;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}


/* Logo */
#logo
{
    position: fixed;
    top: 4vh;
    right: 4vh;
    height: 10vh;
    z-index: 2;
}

