<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
Mobile Youth Base &amp; Hero Fonts

There are more font types, but we only need the bold, medium and regular for the base and medium for the hero fonts.
Please check mde-fonts repository for all the font types.
 */

@font-face {
  font-family: YouthBase;
  src: url(https://static.classistatic.de/fonts/mob-youth-base-bold-v1.woff2)
  format("woff2"),
  url(https://static.classistatic.de/fonts/mob-youth-base-bold-v1.woff)
  format("woff");
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: YouthBase;
  src: url(https://static.classistatic.de/fonts/mob-youth-base-medium-v1.woff2)
  format("woff2"),
  url(https://static.classistatic.de/fonts/mob-youth-base-medium-v1.woff)
  format("woff");
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: YouthBase;
  src: url(https://static.classistatic.de/fonts/mob-youth-base-regular-v1.woff2)
  format("woff2"),
  url(https://static.classistatic.de/fonts/mob-youth-base-regular-v1.woff)
  format("woff");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: YouthHero;
  src: url(https://static.classistatic.de/fonts/mob-youth-hero-medium-v1.woff2)
  format("woff2"),
  url(https://static.classistatic.de/fonts/mob-youth-hero-medium-v1.woff)
  format("woff");
  font-weight: 500;
  font-display: swap;
}


body {
  background: #fff;
  color: #1B1B21;
  font-family: "YouthBase", Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.page {
  width: 100%;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.header {
  box-shadow: 0 0 0 1px #d5dae0;
  height: 72px;
  width: 100%;
}

.headerContent {
  display:flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-left: auto;
  margin-right: auto;
  height: 100%;
  max-width: 806px;
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 426px;
  margin-left: auto;
  margin-right: auto;
}

.errorImage {
  width: 100%;
  margin-top: 54px;
}

.errorCode {
  font-size: 14px;
  line-height: 20px;
  margin-top: 27px
}

.headline {
  font-family: "YouthHero", Arial, sans-serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 40px;
  margin-top: 9px;
  margin-bottom: 18px;
}

.errorText {
  font-size: 16px;
  line-height: 24px
}

.backToStartpageButton {
  padding: 12px 16px;
  margin-top: 27px;
  font-weight: 700;
  color: #fff;
  font-size: 14px;
  line-height: 20px;
  background-color: #db3000;
  border: 1px solid #db3000;
  border-radius: 8px;
  text-decoration: none;
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
}

.backToStartpageButton:hover,
.backToStartpageButton:focus,
.backToStartpageButton:active {
  background-color: rgb(173, 35, 0);
}

.backToStartpageButton:hover,
.backToStartpageButton:active {
  border-color: rgb(173, 35, 0);
}

.backToStartpageButton:hover {
  color: #fff;
}

.textContent {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.secondaryFontColor {
  color: rgb(93, 97, 107);
}
</pre></body></html>