/* Sämtliche externen Fonts (Google) wurden entfernt */

.error-container {
  text-align: center;
  font-size: 180px;
  /* System-Alternative für Catamaran */
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-weight: 800;
  margin: 20px 15px;
}

.error-container > span {
  display: inline-block;
  line-height: 0.7;
  position: relative;
  color: #FFB485;
  vertical-align: middle;
}

.error-container > span:nth-of-type(1) {
  color: #D1F2A5;
  animation: colordancing 4s infinite;
}

.error-container > span:nth-of-type(3) {
  color: #F56991;
  animation: colordancing2 4s infinite;
}

.error-container > span:nth-of-type(2) {
  width: 120px;
  height: 120px;
  border-radius: 999px;
  position: relative;
}

.error-container > span:nth-of-type(2):before,
.error-container > span:nth-of-type(2):after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: inherit; height: inherit;
  border-radius: 999px;
  box-shadow: inset 30px 0 0 rgba(209, 242, 165, 0.4),
              inset 0 30px 0 rgba(239, 250, 180, 0.4),
              inset -30px 0 0 rgba(255, 196, 140, 0.4),
              inset 0 -30px 0 rgba(245, 105, 145, 0.4);
  animation: shadowsdancing 4s infinite;
}

.error-container > span:nth-of-type(2):before {
  transform: rotate(45deg);
}

.screen-reader-text {
  position: absolute;
  top: -9999em;
  left: -9999em;
}

@keyframes shadowsdancing {
  0%, 100% {
    box-shadow: inset 30px 0 0 rgba(209, 242, 165, 0.4),
                inset 0 30px 0 rgba(239, 250, 180, 0.4),
                inset -30px 0 0 rgba(255, 196, 140, 0.4),
                inset 0 -30px 0 rgba(245, 105, 145, 0.4);
  }
  25% {
    box-shadow: inset 30px 0 0 rgba(245, 105, 145, 0.4),
                inset 0 30px 0 rgba(209, 242, 165, 0.4),
                inset -30px 0 0 rgba(239, 250, 180, 0.4),
                inset 0 -30px 0 rgba(255, 196, 140, 0.4);
  }
  50% {
     box-shadow: inset 30px 0 0 rgba(255, 196, 140, 0.4),
                inset 0 30px 0 rgba(245, 105, 145, 0.4),
                inset -30px 0 0 rgba(209, 242, 165, 0.4),
                inset 0 -30px 0 rgba(239, 250, 180, 0.4);
  }
  75% {
   box-shadow: inset 30px 0 0 rgba(239, 250, 180, 0.4),
                inset 0 30px 0 rgba(255, 196, 140, 0.4),
                inset -30px 0 0 rgba(245, 105, 145, 0.4),
                inset 0 -30px 0 rgba(209, 242, 165, 0.4);
  }
}

@keyframes colordancing {
  0%, 100% { color: #D1F2A5; }
  25% { color: #F56991; }
  50% { color: #FFC48C; }
  75% { color: #EFFAB4; }
}

@keyframes colordancing2 {
  0%, 100% { color: #FFC48C; }
  25% { color: #EFFAB4; }
  50% { color: #D1F2A5; }
  75% { color: #F56991; }
}

* {
  box-sizing: border-box;
}

body {
  background-color: #416475;
  margin-bottom: 50px;
}

html, button, input, select, textarea {
  /* System-Alternative für Montserrat */
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #92a4ad;
}

h1 {
  text-align: center;
  margin: 30px 15px;
}

.link-container {
  text-align: center;
}

a.more-link {
  text-transform: uppercase;
  font-size: 13px;
  background-color: #92a4ad;
  padding: 10px 15px;
  color: #416475;
  display: inline-block;
  text-decoration: none;
  margin-top: 50px;
  letter-spacing: 1px;
}
