@charset "UTF-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Arimo:ital,wght@0,400..700;1,400..700&display=swap');
/* || RESET */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
:root {
	--defauldgray:rgb(53, 52, 52);
   --defauldorange: rgb(244,152,35,1.00);
}
body{
    font: 1.5rem "Arimo";
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: var(--defauldgray);
    overflow: hidden;
    margin-top: 5px;
}

header, main, footer {
	display:grid;
	place-content: center;
	grid-template-columns: 100%;
	text-align: center;

}
header, footer {
	position: sticky;
	overflow: hidden;
	background-color: var(--defauldgray);
	
}
header{
	top: 0;
}
header img{
	height: auto;
	margin-left: auto;
	margin-right: auto;
	width: 90%;
	
	
}
h1, h2, h3 {
	letter-spacing: 1px;
    word-spacing: 1px;
    color: white;
    font-weight: lighter;
    text-align: left;
    margin-left: auto ;
    margin-right: auto;

}
.homebutton  {
	 	 cursor: pointer;
  z-index: 1;
 margin-left: auto;
  }
.returnbutton  {
	cursor: pointer;
z-index: 1;
margin-left: auto;
}
.lokation-cell img{
	margin-left: auto ;
	height: auto;
	
}



.categorie-menu {
	margin-left: auto ;
    margin-right: auto;
	margin-bottom: 100%;
	padding-bottom: 1%;
	border-left: 6px solid var(--defauldorange);
    }

	.categorie-menu a {
		letter-spacing: 1px;
    word-spacing: 2px;
   display: block;
		text-decoration: none;
		color: white;
		height: auto;
		white-space: normal;
	text-align: left;
		clear: both;
					  }


.tbl-list{
	display: inline-block; 
	overflow: auto;
		margin-left: auto ;
    margin-right: auto;
		border: 2px var(--defauldorange);
		border-style: solid;					
}
tr td:nth-child(0){
                height: auto;
               }
 tr td:nth-child(1){
                height: auto;
               }
	tr td:nth-child(2){
        height: auto;
            }
			  

footer{
	bottom: 0;
}
.fullsize {
		position: absolute;
	left: 50%;
	top: 0;
	transform: translate(-50%, 0);
	transition: transform 0.5s;
	
	  }
