@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;
}

.hpc{
	min-height: 100vh;
}

.main {
	position: relative;
	place-content: center;
}

.bottom{
	width: 100%;
	bottom: 0;
	min-height: 100px;
}

footer {
	margin-top: -42px;
	heigt: 25px;
	text-align: center;
	padding-top: 10px;
	padding-bottom: 10px;
	background-color: var(--header-button-hover);
	color: var(--text);
	font-size: 12pt;
}

.center-child {
	display: grid;
	height: 90vh;
}
.header{
	background-color: var(--header);
	position: sticky;
	top: 0;
	z-index: 1000;
}
div.flex-this{
	display:flex;
	gap: 10px;
	justify-content: flex-start;
}
.content{
	padding: 30px;
	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);
}
.dreid>button{
	border: none;
	background-image: linear-gradient(rgba(0,0,0,0) 60%, rgba(0,0,0,0.5)100%),url("/static/3d/3d.png");
	background-size: cover;
	background-position: center;
	color: #ffffff;
	border-radius: 12px;
	width: 300px;
	height: 300px;
	position: relative;
	transition: all 300ms ease;
	cursor: pointer;
}
.dreid>button:hover{
	transform: scale(110%,110%);
	box-shadow: 0 0 20px rgba(0,0,0,.5);
	z-index: 999;
}
.dreid>button>span{
	position: absolute;
	bottom: 10px;
	left: 10px;
	font-size: 20px;
	font-family: DINOT-Bold;
}
.vektor>button{
	border: none;
	background-image: linear-gradient(rgba(0,0,0,0) 60%, rgba(0,0,0,0.5)100%),url("/static/vektor/bezier.jpeg");
	background-size: cover;
	background-position: center;
	color: #ffffff;
	border-radius: 12px;
	width: 300px;
	height: 300px;
	position: relative;
	transition: all 300ms ease;
	cursor: pointer;
}
.vektor>button:hover{
	transform: scale(110%,110%);
	box-shadow: 0 0 20px rgba(0,0,0,.5);
	z-index: 999;
}
.vektor>button>span{
	position: absolute;
	bottom: 10px;
	left: 10px;
	font-size: 20px;
	font-family: DINOT-Bold;
}
.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%);
}
.animation video{
	height: 101%;
	margin-left: -4px;
	margin-top: -2px;
	display: block;
}
.animation>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;
}
.animation>button:hover{
	transform: scale(110%,110%);
	box-shadow: 0 0 20px rgba(0,0,0,.5);
	z-index: 999;
}
.animation>button>span{
	position: absolute;
	bottom: 10px;
	left: 10px;
	font-size: 20px;
	font-family: DINOT-Bold;
	z-index: 3;
}
.raster>button{
	border: none;
	background-image: linear-gradient(rgba(0,0,0,0) 60%, rgba(0,0,0,0.5)100%),url("/static/raster/pixelburger.jpeg",);
	background-size: cover;
	background-position: center;
	color: #ffffff;
	border-radius: 12px;
	width: 300px;
	height: 300px;
	position: relative;
	transition: all 300ms ease;
	cursor: pointer;
}
.raster>button:hover{
	transform: scale(110%,110%);
	box-shadow: 0 0 20px rgba(0,0,0,.5);
	z-index: 999;
}
.raster>button>span{
	position: absolute;
	bottom: 10px;
	left: 10px;
	font-size: 20px;
	font-family: DINOT-Bold;
}
