/*Basic*/

html {
  box-sizing: border-box;
  height: 100%;
  min-height: 100%;
}

html,
input,
select,
textarea {
  font-size: 16px;
}

body,
input,
select,
textarea {
  font-family: "League Spartan Variable";
  /* font-family: "League Spartan Variable", sans-serif; */
  font-weight: normal;
  line-height: 1.5em;
  letter-spacing: -0.015em;
}
/*Custom*/

Body #header .content {
  display: block;
  width: 100%;
  text-align: center;
  margin: 0 0 0 0;
  color: #fff;
}

Body #header .content img {
  max-width: 640px;
}

Body #footer a {
  cursor: pointer;
}

Body #footer p {
  text-decoration: none;
  font-size: 0.8rem;
  padding: 0;
  margin: 0;
}

@media screen and (max-width: 480px) {
  Body #footer p {
    font-size: 0.75rem;
  }
}

@media screen and (min-width: 1200px) {
  Body #footer p {
    font-size: 0.75rem;
  }
}

/*Home*/

Body.home #header a {
  color: #fff;
}
Body.home {
  background-color: #472682;
  height: 100%;
  overflow: hidden;
  min-height: 100%;
  margin: 0;
  padding: 0;
}

Body.home header#header {
  padding: 0% 20% 0% 20%;
  height: 100%;
  align-items: center;
  display: flex;
}

Body.home #footer {
  padding: 0% 0% 1% 0%;
  color: #b0b0b0;
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

Body.home #footer p {
  color: #fff;
}

Body .progress {
  height: 10px;
  background-color: #f7f7f7;
  max-width: 300px;
  margin: 0 auto;
}

Body .progress .bar {
  height: 10px;
  background-color: #f57f17;
  animation: progressAnimation ease-out 3s;
}
@keyframes progressAnimation {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

Body .progress-container {
}

/*Section*/

Body.impressum {
  padding: 1rem 1rem 2rem 1rem;
}

Body section#one {
  background: #fff;
  width: 100%;
  max-width: 960px;
  margin: auto;
}

Body section#one header img {
  width: 160px;
  margin-bottom: 1rem;
}

Body section#one header div {
  margin-bottom: 0.5rem;
}

Body section#one p,
Body section#one h2 {
  padding: 0;
  margin: 0;
}

Body section#one h2 {
  font-family: "League Spartan Variable";
  font-weight: 500;
  font-style: normal;
  font-size: 1.3rem;
  line-height: 1.33;
}

@media screen and (max-width: 480px) {
  Body section#one h2 {
    font-size: 1rem;
  }
}

Body section#one .space p strong {
  display: flex;
  margin-bottom: 5px;
}

Body section#one p {
  font-family: "League Spartan Variable";
  font-weight: 300;
  font-style: normal;
}
Body.home section#one p {
  font-size: 1rem;
  line-height: 1.33;
}

Body section#one p strong {
  margin-bottom: 5px;
}

@media screen and (max-width: 480px) {
  Body section#one p {
    font-size: 0.85rem;
  }
}

Body.impressum #footer {
  color: #000;
  text-align: center;
  bottom: 0;
  position: fixed;
  left: 0;
  background: #fff;
  right: 0;
  padding: 1%;
}

Body.impressum #footer p {
  color: #000;
}

Body.impressum {
  display: flex;
  flex-direction: column;
  height: 90vh;
}

Body.impressum header {
  height: 100%;
  display: flex;
  flex-direction: column;
}
Body.impressum #header a {
  color: #000;
}
