@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);
}
.vid{
	position: relative;
	width: 300px;
	height: 300px;
}
.vid:before{
	content:'';
	width:300px;
	height: 301px;
	position: absolute;
	left: -4px;
	background: linear-gradient(rgba(0,0,0,0) 60%, rgba(0,0,0,0.5)100%);
}
.technik-hintergrund video{
	height: 101%;
	margin-left: -185px;
	margin-top: -2px;
	display: block;
}
.technik-hintergrund>button{
	border: none;
	background-size: cover;
	background-position: center;
	color: #ffffff;
	border-radius: 12px;
	width: 300px;
	height: 300px;
	position: relative;
	transition: all 300ms ease;
	cursor: pointer;
	overflow: hidden;
}
.technik-hintergrund>button:hover{
	transform: scale(110%,110%);
	box-shadow: 0 0 20px rgba(0,0,0,.5);
	z-index: 999;
}
.technik-hintergrund>button>span{
	position: absolute;
	bottom: 10px;
	left: 10px;
	font-size: 20px;
	font-family: DINOT-Bold;
	z-index: 3;
}
.hot video{
	height: 95%;
	margin-left: 3px;
	margin-top: -2px;
	display: block;
}
.hot>button{
	border: none;
	background-size: cover;
	background-position: center;
	background: #000000;
	color: #ffffff;
	border-radius: 12px;
	width: 300px;
	height: 300px;
	position: relative;
	transition: all 300ms ease;
	cursor: pointer;
	overflow: hidden;
}
.hot>button:hover{
	transform: scale(110%,110%);
	box-shadow: 0 0 20px rgba(0,0,0,.5);
	z-index: 999;
}
.hot>button>span{
	position: absolute;
	bottom: 10px;
	left: 10px;
	font-size: 20px;
	font-family: DINOT-Bold;
	z-index: 3;
}
.flugmodus video{
	height: 95%;
	margin-left: 3px;
	margin-top: -2px;
	display: block;
}
.flugmodus>button{
	border: none;
	background-size: cover;
	background-position: center;
	background: #000000;
	color: #ffffff;
	border-radius: 12px;
	width: 300px;
	height: 300px;
	position: relative;
	transition: all 300ms ease;
	cursor: pointer;
	overflow: hidden;
}
.flugmodus>button:hover{
	transform: scale(110%,110%);
	box-shadow: 0 0 20px rgba(0,0,0,.5);
	z-index: 999;
}
.flugmodus>button>span{
	position: absolute;
	bottom: 10px;
	left: 10px;
	font-size: 20px;
	font-family: DINOT-Bold;
	z-index: 3;
}

.mobile{
	display: none;
	color: var(--text-inv);
}
@media (hover: none){
	.mobile{
		color: var(--text-inv);
		font-family: DINOT-Bold;
		background-color: #e74646;
		padding: 10px;
		text-align: center;
		display: block;
	}
}
.bottom{
	height: 100px;
}
