@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-size: cover;
	background-position: center;
	color: var(--text);
	font-family: DINOT;
	margin: 0;
	width: 100%;
	min-height: 100vh;
}

.hpc{
	position: relative;
	z-index: 10;
}

.main {
	height: calc(100vh - 50px);
	position: relative;
    z-index: 11;
}

.center-child {
	display: grid;
	height: 90vh;
}

div.flex{
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	justify-content: center;
}

.cal{
	width: 100%;
	height: 600px;
}

.footer{
	text-align: center;
}

#use5309{
	animation: rotate-path 3s linear infinite;
	animation-play-state: paused;
	transform-box: fill-box;
	transform-origin: center;
	transition: 1s ease;
}
#svg5:hover #use5309{
	animation-play-state: running;
}
@keyframes rotate-path {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

#main-title {
	place-self: center;
	display: inline-block;
	font-family: DINOT-Bold;
	z-index: 13;
	transition: transform 0.1s;
}

#main-title > div {
	transform: translate3d(0, 0, -1);
	color: var(--text-gray);
	margin-top: 3px;
}

.untertitel{
	position: relative;
    z-index: 20;
    color: var(--text);
    font-family: DINOT-Bold;
}

#background-rotator {
	position: fixed;
	inset: 0;
	z-index: -2;
	background-size: cover;
	background-position: center;
	overflow: hidden;
}

#background-rotator .overlay {
	position: absolute;
	inset: 0;
	background-color: var(--main-background);
	opacity: 0.7;
	z-index: 1;
}

#background-rotator .bg-layer {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	opacity: 0;
	transition: opacity 2s ease;
	z-index: 0;
}
.footer{
	display: flex;
	justify-content: center;
}
.footer-content{
	position: fixed;
	bottom: 20px;
}
.footer-icon{
	height: 25px;
	width: auto;
	fill: var(--logo);
	padding-left: 10px;
	padding-right: 10px;
}
.icon-text{
	font-family: DINOT-Bold;
	color: var(--text);
	padding-right: 10px;
	position: relative;
	bottom: 5px;
}
.icon-text:hover{
	text-decoration: underline;
}
.icon-link{
	text-decoration: none;
}
.ueber{
	font-family: DINOT-Bold;
	color: var(--text);
	padding-left: 8px;
	padding-right: 10px;
	position: relative;
	bottom: -3px;
}
.ueber:hover{
	text-decoration: underline;
}
