/*************************
      FOOTER
*************************/

/* Schrift direkt hier einbinden */
@font-face  {
  font-family: 'yikesregular';
  src: url('/mxsg/styles/yikes__-webfont.woff2') format('woff2'),
      url('/mxsg/styles/yikes__-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  
}

.container-fluid.footer {
	background: black;	
	font-family: 'Permanent Marker', cursive;
	color: var(--blue);
	border-top: 4px solid var(--darkblue);
	box-shadow: inset 0px 4px 8px -2px var(--darkblue); /* nach innen oben */
	text-align: center;
	position: fixed;    
	width: 100vw;   /* statt 100% → nimmt komplette Fensterbreite, auch bei Scrollbars */
	left: 0;        /* sichert, dass er wirklich ganz links startet */
	bottom: 0;
	margin: 0;
	padding-top: 10px;
	padding-left: 0;
	padding-right: 0;
	box-sizing: border-box;
	max-height: 13vh;
	z-index: 999;
}


.x-footer {
	background-image: linear-gradient(-25deg,
		#231557 0%,
		#44107a 29%,
		#ff1361 67%,
		#fff800 100%);
	background-size: 200% auto;
	color: #fff;
	-webkit-background-clip: text;
	-moz-background-clip: text;
	-o-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	-moz-text-fill-color: transparent;
	-o-text-fill-color: transparent;
	animation: textclip 3s ease-in-out infinite;
	display: inline-block;
	font-size: 1.3rem;	
	font-family: 'Permanent Marker', cursive;
}

.website-footer {
	width: 100%;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

@media only screen and (max-width: 780px) {
	.container-fluid.footer {
		height: 12vh;
		padding-left: 0;
		padding-right: 0;
	}
}
