@import url('https://fonts.googleapis.com/css2?family=Arvo&family=Outfit:wght@200;500&display=swap');

html, body{
	padding: 0;
	margin: 0;
}
body{
	padding-bottom: 1em;
	line-height: 1.5em;
}
ul{
	line-height: 1.5em;
}
html{
	background: linear-gradient(
		rgba(0,153,170,0.05) 90%,
		rgba(0,153,170,0.1)
	);
	min-height: 100%;
	font-family: 'Outfit', sans-serif;
	font-weight: 300;
}
a{
	text-decoration: none;
	border-top: 1px solid rgba(0,0,0,0.15);
	border-bottom: 1px solid rgba(0,0,0,0.15);
	background: rgb(0,153,170,0.01);
	padding: 0 0.2em;
}
a:hover{
	border-top: 1px solid rgba(0,0,0,1);
	border-bottom: 1px solid rgba(0,0,0,1);
	background: linear-gradient(
		to left,
		rgba(0,153,170,0.0),
		rgba(0,153,170,0.1) 2%,
		rgba(0,153,170,0.1) 98%,
		rgba(0,153,170,0.0)
	);
}

a,
a:visited,
a:active,
a:hover{
	color: rgb(0,51,56);
}

nav#topbar{
	display: block;
	padding: 0.5em;
	left:0;
	right:0;
	background-color: rgba(153,170,0,0.1);
	background-image:
		linear-gradient(
			rgba(255,255,255,0.5) 80%,
			rgba(0,0,0,0) 90%,
			rgba(0,0,0,0.05) 98%,
			rgba(0,0,0,0.2)
		),
		url("/img/brick.png");
	background-size: 2em;
	box-shadow: 0 0 0.2em rgba(0,0,0,0.3);
	font-size: 2em;
	font-family: 'Arvo', serif;
}
nav ul{
	display: flex;
	padding: 0;
	margin: 0;
}
nav ul li{
	display: flex;
	align-items: flex-end;
	border-radius: 0.1em 0.1em 0.1em 0.1em;
	padding: 0.25em;
	margin: 0.05em;
	background-color: rgba(255,255,255,0.5);
	color: black;
	border: 0.05em black solid;
}
nav ul li:last-child{
	border-radius: 0.1em 0.25em 0.25em 0.1em;
}

#topbar img{
	vertical-align: -32px;
}
#body{
	padding: 0 1em;
}

.map div{
	height:0;
	width: 0;
	display: block;
}
.map div div{
	position: relative;
	display: block;
	text-align: center;
	overflow-wrap: break-word;
}
.room_info{
	border: 2px solid black;
	border-radius: 0.5em;
	box-shadow: 0.2em 0.2em 0.2em lightgrey;
	background: #f8f8f8;
}

h1,h2,h3,h4,h5{
	font-weight: 500;
}

.disabled_link{
	cursor: not-allowed;
}
.large{
	font-size: 1.75em;
}

.articles{
	counter-reset: article;
}

.articles h4::before{
	counter-increment: article;
	content: "Artikel " counter(article) ".  ";
}

