/* Farben */
html {
  box-sizing: border-box;
  font-size: 100%;
  scroll-behavior: smooth;
}

*, *::before, *::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  padding: 0;
  background-color: rgb(220, 220, 220);
}

/* Nav */
.navbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  background-color: rgb(27, 156, 228);
}

/* Main */
.main {
  width: 100vw;
  min-height: 650px;
}

#S404 h1 {
  font-size: 100px;
  margin: 0;
  color: #e74c3c;
}
#S404 p {
  font-size: 24px;
  color: #333;
}
#S404 a {
  color: #3498db;
  text-decoration: none;
  font-size: 18px;
}
#S404 a:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  width: 100vw;
  height: 150px;
  background-color: rgb(27, 156, 228);
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  padding-top: 12px;
}
footer .btn-link {
  color: rgb(220, 220, 220);
  text-decoration: none;
}
footer .btn-link:hover {
  color: rgb(220, 220, 220);
  text-decoration: underline;
}
footer a {
  color: rgb(220, 220, 220);
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
}

.modal {
  margin-right: 100px;
  margin-left: 100px;
  padding: 12px;
}/*# sourceMappingURL=style.css.map */