body
{
	margin:0;
	display:flex;
	justify-content: center;
	background-color: #fff;
}

@font-face {
  font-family: 'Source Code Pro';
  src: url('fonts/SourceCodePro-Regular.otf.woff2') format('woff2'); 
  font-weight: 400;
  font-style: normal;
  font-display: swap; /* Bessere Performance */
}

/* Source Code Pro - Bold */
@font-face {
  font-family: 'Source Code Pro';
  src: url('fonts/SourceCodePro-Bold.otf.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}


.background
{
	width: 40vw;
	-webkit-filter: blur(10px);
	filter: blur(10px);
	margin: auto;
	opacity: 0;
	animation: fadeIn 1.5s ease-in-out forwards;
}

@keyframes fadeIn {
	to {
		opacity: 1;
	}
}


@media (min-width: 768px)
{
	.background
	{
		width: 20vw;
		margin-top: 35vh;
	}
}


.carsten 
{
  font-family: 'Source Code Pro', sans-serif;
  font-weight: 400;
  line-height: 1.75;
  font-size: 1rem;
  color: hsla(0, 0%, 50%, 1);
  text-align: center;
  position: absolute;
  bottom: 5vh;
}

emphasis { font-weight: 700;}