@import url("https://fonts.googleapis.com/css2?family=Urbanist:wght@300;400;500;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400&display=swap");
:root {
  --main-bg-color: #ebebeb;
  --blue-bg-color: #D1EAFE;
  font-size: 16px;
  --nav-black: #000000;
}

@media screen and (min-width: 750px) {
  :root {
    font-size: 18px;
  }
}

@media screen and (min-width: 1200px) {
  :root {
    font-size: 20px;
  }
}

* {
  padding: 0;
  margin: 0;
}

body {
  margin: 0;
  padding: 10%;
  overflow-x: hidden;
  font-family: 'Urbanist';
  background-color: var(--main-bg-color);
  color: black;
  font-weight: 300;
}

h2 {
  font-weight: 400;
}

section {
  height: 100vh;
  margin: 0;
  padding: 6em 0;
  scroll-margin-top: 3rem;
}

.header {
  text-align: center;
  margin-top: 10rem;
}

.top-impressum {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  width: 100%;
  margin-top: 8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.top-impressum .left-side {
  margin-right: 5rem;
  line-height: 3rem;
}

.top-impressum .right-side {
  margin-left: 5rem;
  line-height: 3rem;
}

@media screen and (max-width: 600px) {
  .top-impressum {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
  .top-impressum .right-side {
    margin: 0%;
  }
  .top-impressum .left-side {
    margin: 0%;
  }
}

.Angabe {
  text-align: center;
  margin-top: 8rem;
}

.bottom-impressum {
  text-align: center;
}

.text {
  margin: 3rem 10rem 0 10rem;
  text-align: left;
}

@media screen and (max-width: 600px) {
  .text {
    text-align: center;
    margin: 3% 5% 0% 5%;
  }
}
/*# sourceMappingURL=main.css.map */