@font-face {
  font-family: 'MabryPro';
  src: url(/resources/fonts/MabryPro-Regular.woff2);
}

@font-face {
  font-family: 'MabryPro Bold';
  font-weight: bold;
  src: url(/resources/fonts/MabryPro-Bold.woff2) format("woff2");
}

@font-face {
  font-family: 'Designer';
  font-weight: normal;
  src: url("/resources/fonts/Designer.otf") format("opentype");
}

/*opentype = otf, truetype = ttf*/

/* VARIABLES */

:root {
  --primary-color: #8F00FF;
  --color-grey: #1a1a1a;
  --color-red: #FF004D;
  --color-yellow: #FAEF5D;
  --color-green: hsl(162 100% 22%);

  --body-background-color: hsl(0, 0%, 10%);

  --font-family: 'MabryPro';
  --font-family-bold: 'MabryPro Bold';
  --font-size: 1.10rem;
  --font-line-heigt: 1.5rem;

  --text-color: hsl(300 0% 69%);;
  --text-color-light: hsl(0 0% 95%);;

  --link-color: #0d6efd;
  --link-hover-color: #B4D4FF;

  --transition-ease-out: 0.2s ease-out;
  --border-radius: 10px;
  --wrapper: 1000px;
}

body{
  background: black;
  font-family: var(--font-family);
  box-sizing: border-box;
  overflow-y:auto;
  overflow-x: auto;

  display: flex;
  flex-direction: column;
  min-height: 100dvh;
}

#header-content.header-remove{
  pointer-events: remove;
  transform: translateY(-90px);
}

#header-content{
  border-bottom: 1px solid #fff;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 10px;
  top: 0px;

  position: relative;
  z-index: 99;
  width: 100%;
  background: #000000;
  opacity: 1;

  transition: opacity 0.0s ease, transform 0s ease;
  pointer-events: auto; 
}

.header-progress-bar-container{
  display: none;
  height: 3px;
  width: 100%;
}

.header-progress-bar{
 background: linear-gradient(90deg, #8F00FF, #FF004D);
 height: 100%;
}

.header-wrapper{
  max-width: var(--wrapper);
  width: 100%;
  margin: 0 auto;
}

.header-container{
  display: flex;
  flex-wrap: wrap;
}

.header-container-box{
  flex:1;
  text-align: center;
}


.header-mobile-menu{
  background-color: red;
  position: fixed;
  top:0;
  right: 0;
}
#background-container{
  position: fixed;
	width: 100%;
	z-index: -1;
	display:flex; 
	justify-content: center; 
	align-items: center; 
	height: 100vh;

  transition: background-color 1s ease;

  /* background-image: url("/resources/img/head1.png"); */
  background-blend-mode: darken;
  background-position: center;
  background-repeat: no-repeat;

  
}

#background-container.background-container-darken{
  background-color: #000000bc;
}

main{
  /*border: 1px dotted red;*/
  flex: 1;
}

#ajax-content{
  opacity: 0;
  transition: opacity 0s ease;
}

#ajax-content.show-ajax-content{
  opacity: 1;
}

footer{
  border-top: 1px solid #fff;
  padding-bottom: 20px;
  padding-top: 10px;
  background-color: #000000;

}

.footer-wrapper{
  max-width: var(--wrapper);
  width: 100%;
  margin: 0 auto;
}

.footer-container{
  display: flex;
  flex-wrap: wrap;
}

.footer-container-box{
  flex: 1; /* optional: alle gleich breit */
}

.content-wrapper{
  max-width: var(--wrapper);
  width: 100%;

  margin: 0 auto;
  border: 1px dotted rgb(0, 0, 0);
}

h1{
  color: var(--text-color-light);
  font-family: Designer;
  font-size: 4rem;
  line-height: 10rem;
  text-align: center;
}

h2{
  color: var(--text-color-light);
  line-height: 3.5rem;
  font-size: 32px;
}

h3{
  color: var(--text-color-light);
  font-size: 28px;
}

h4{
  color: var(--text-color-light);
  font-size: 24px;
  font-weight: 500;
}

span{
  color: var(--text-color);
}

p{
  color: var(--text-color);
  font-size: var(--font-size);
  line-height: var(--font-line-heigt);
}

hr{
    border: 0;
    height: 1px;
    background: #c6c6c6;
}

button {
  text-decoration: none;
  background-color: var(--color-grey);
  padding: 7px 10px;
  border-radius: 100px;
  border: none;
  transition: background-color var(--transition-ease-out);
  cursor: pointer;
  color: var(--text-color);
  font-size: var(--font-size);
  font-family: var(--font-family);
}

button:hover {
  background-color: var(--text-color);
  color: var(--body-background-color);
}

button.btn-slim{
  padding: 8px 9px;
}

a{
  color: var(--link-color);
  text-decoration: none;
  transition: color var(--transition-ease-out);
}

a:hover {
  color: var(--link-hover-color);
  cursor: pointer;
}

.a-arrow::before {
  content: " ↗ ";
}

.a-light{
  color: var(--text-color);
}

.a-light:hover{
  color: var(--text-color-light);
  cursor: pointer;
}

button a{
  color: var(--text-color);
}

button a:hover{
  color: var(--body-background-color);
}

button a::before{
  content: "";
}

input[type=text],select{
	border:none;
	background-color:var(--color-grey);
	border-bottom: 2px solid #CCCCCC;
	padding: 10px 0px;
	outline: none;
  width: 100%;
  color: var(--text-color);
  font-family: var(--font-family);
  font-size: var(--font-size);
  transition: border-bottom var(--transition-ease-out);
  border-radius: 2px 2px 0px 00px;
}

input:focus{
	border:none;
	border-bottom: 2px solid var(--primary-color);
}

input[type=submit]{
  border:none;
	background-color:var(--color-grey);
	border-bottom: 2px solid #CCCCCC;
	padding: 10px 10px;
	outline: none;
  color: var(--text-color);
  font-family: var(--font-family);
  font-size: var(--font-size);
  transition: border-bottom var(--transition-ease-out);
  border-radius: 2px 2px 0px 00px;
}

input[type=submit]:hover{
  border-bottom: 2px solid var(--primary-color);
  cursor: pointer;
}

input[type=submit]:active{
  border-bottom: 2px solid var(--color-yellow);
}

textarea{
  border:none;
	background-color:var(--color-grey);
	border-bottom: 2px solid #CCCCCC;
	padding: 10px 0px;
	outline: none;
  color: var(--text-color);
  font-family: var(--font-family);
  font-size: var(--font-size);
  transition: border-bottom var(--transition-ease-out);
  border-radius: 2px 2px 0px 00px;
  resize: none;
  width: 100%;
}

textarea:focus{
  border:none;
	border-bottom: 2px solid var(--primary-color);
}

marquee{
  color: var(--text-color);
  width: 100%;
}

::-webkit-scrollbar {
  display: none;
}

::selection {
  background-color: var(--primary-color);
}


/* RESET DEFAULT CSS*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	vertical-align: baseline;
}

.textgradient {
  background: linear-gradient(to left, #121FCF 0%, #CF1512 50%, #121FCF 100%);
  -webkit-text-fill-color: transparent;
  animation: animate 30s linear infinite;
  background-size: 400%;
}

@keyframes animate {
  0% {
    background-position: 0%;
  }
  100% {
    background-position: 400%;
  }
}

.active {
  color: rgb(0, 0, 0);
}

.censor {
  background-color: white;
  color: white;
}

.bx{
  transform: translate(0px, 2px);
}


/* TABLES */

.table-container{
  overflow-x:auto;
  width: 100%;
}

table{
  color: var(--text-color);
  font-weight: var(--font-weightß);
  width: 100%;
  border-collapse: collapse;
  background-color: #000000;
}

table th {
  text-align: start;
  padding: 10px;
  /*border: 0.5px solid var(--text-color-light); */
  color: #fff;
}

table td {
  padding: 10px;
 /* border: 0.5px solid var(--text-color-light); */
  
}


tr:nth-child(even) {
  background-color: var(--color-grey);
}

select{
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  width: 100%;
}

select:focus{
  outline: none;
  border-bottom: 2px solid var(--primary-color);
}

#f-link{
  text-align: right;
}
@media only screen and (max-width: 768px){

  .header-wrapper{
    max-width: 95%;
  }

  .content-wrapper{
    max-width: 95%;
  }

  footer{
    padding-bottom: 0px;
  }

  .footer-wrapper{
    max-width: 95%;
  }

  .footer-container{
  display: block;
}

.footer-container-box{
  display: block;
  text-align: center;
}

#f-link{
  text-align: center;
}

#background-container{
transform: translateY(-50px);
background-size: 50%;
}
}