@font-face {
    font-family: 'DINOT'; /*a name to be used later*/
    src: url("/static/DINOT.otf"); /*URL to font*/
}
@font-face {
    font-family: 'DINOT-Bold'; /*a name to be used later*/
    src: url("/static/DINOT-Bold.otf"); /*URL to font*/
}

body {
	background-color: var(--main-background);
	background-size: cover;
	background-position: center;
	color: var(--text);
	font-family: DINOT;
	margin: 0;
	width: 100%;
	min-height: 100vh;
}

div.main {
	display: grid;
	place-content: center;
}
.sub{
	width: 100vw;
	display: flex;
	justify-content: space-between;
}
.sub-title{
	margin: 20px;
	font-family: DINOT-Bold;
}
.lastsub{
	width: 95px;
}

.center-child {
	display: grid;
	height: 90vh;
}
.header{
	background-color: var(--header);
	display: static;
	position: sticky;
	top: 0;
	z-index: 1000;
}
div.flex-this{
	display:flex;
	gap: 10px;
	justify-content: flex-start;
}
.content{
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	justify-content: center;
}
.titleicon{
	background: url("/static/burger.png");
	height: 40px;
	width: 40px;
	background-size: contain;
	border: none;
	margin: 10px;
	margin-right: 0px;
	cursor: pointer;
}
.ptftitle{
	border: none;
	background-color: var(--header-button);
	color: var(--text);
	cursor: pointer;
	padding: 17px;
	font-family: DINOT-Bold;
	font-size: 20px;
	transition: all 100ms ease;
}
.ptftitle:hover{
	background-color: var(--header-button-hover);
	color: var(--header-button-hover-text);
}
.linkhome{
	border: none;
	background-color: var(--header-button);
	color: var(--text);
	cursor: pointer;
	padding: 17px;
	font-family: DINOT;
	font-size: 20px;
	transition: all 100ms ease;
}
.linkhome:hover{
	background-color: var(--header-button-hover);
	color: var(--header-button-hover-text);
}
.linkcloud{
	border: none;
	background-color: var(--header-button);
	color: var(--text);
	cursor: pointer;
	padding: 17px;
	font-family: DINOT;
	font-size: 20px;
	transition: all 100ms ease;
}
.linkcloud:hover{
	background-color:  var(--header-button-hover);
	color: var(--header-button-hover-text);
}
.back{
	border: none;
	background-color: var(--header);
	border-radius: 12px;
	color: var(--text);
	cursor: pointer;
	padding: 12px;
	font-family: DINOT;
	font-size: 15px;
	margin-top:8px;
	margin-left:8px;
	transition: all 100ms ease;
}
.back:hover{
	background-color: var(--header-button-hover);
	color: var(--header-button-hover-text);
}
.burger>button{
	border: none;
	background-image: linear-gradient(rgba(0,0,0,0) 60%, rgba(0,0,0,0.5)100%),url("/static/vektor/burger/burger1.png");
	background-size: cover;
	background-position: center;
	color: #ffffff;
	border-radius: 12px;
	width: 300px;
	height: 300px;
	position: relative;
	transition: all 300ms ease;
	cursor: pointer;
}
.auswahl>button:hover{
	transform: scale(110%,110%);
	box-shadow: 0 0 20px rgba(0,0,0,.5);
	z-index: 999;
}
.auswahl>button>span{
	position: absolute;
	bottom: 10px;
	left: 10px;
	font-size: 20px;
	font-family: DINOT-Bold;
}
.wappen>button{
	border: none;
	background-image: linear-gradient(rgba(0,0,0,0) 60%, rgba(0,0,0,0.5)100%),url("/static/vektor/wappen/wappen1.png");
	background-size: cover;
	background-position: center;
	color: #ffffff;
	border-radius: 12px;
	width: 300px;
	height: 300px;
	position: relative;
	transition: all 300ms ease;
	cursor: pointer;
}
.raumplan2>button{
	border: none;
	background-image: linear-gradient(rgba(0,0,0,0) 60%, rgba(0,0,0,0.5)100%),url("/static/vektor/raumplan2/raumplan-prev.png");
	background-size: cover;
	background-position: center;
	color: #ffffff;
	border-radius: 12px;
	width: 300px;
	height: 300px;
	position: relative;
	transition: all 300ms ease;
	cursor: pointer;
}
.raumplan>button{
	border: none;
	background-image: linear-gradient(rgba(0,0,0,0) 60%, rgba(0,0,0,0.5)100%),url("/static/vektor/raumplan/raumplan-prev.png");
	background-size: cover;
	background-position: center;
	color: #ffffff;
	border-radius: 12px;
	width: 300px;
	height: 300px;
	position: relative;
	transition: all 300ms ease;
	cursor: pointer;
}
.stammeslogo>button{
	border: none;
	background-image: linear-gradient(rgba(0,0,0,0) 60%, rgba(0,0,0,0.5)100%),url("/static/vektor/stammeslogo/UA-prev.png");
	background-size: cover;
	background-position: center;
	color: #ffffff;
	border-radius: 12px;
	width: 300px;
	height: 300px;
	position: relative;
	transition: all 300ms ease;
	cursor: pointer;
}
.bottom{
	height: 100px;
}
