/* >- GENERAL ------------------------------- */
html, body {
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1.25rem;
}

a {
  color: #000;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.bold {
  font-weight: 700;
}

h1 {
  font-family: 'Zen Dots', sans-serif;
  margin-top: 0;
  margin-bottom: .3em;
  line-height: 0.9;
  font-size: 2rem;
  font-size: clamp(2rem, -3.333333333333334rem + 17.77777777777778vw, 4rem);
}

footer .nav {
  font-family: 'Zen Dots', sans-serif;
}
footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  overflow-x: hidden;
}

footer .nav {
  font-family: 'Zen Dots', sans-serif;
}

footer .mail, .nav {
  height: 4rem;
  display: flex;
  align-items: center;
  padding-left: 1.5rem;
  padding-right: 2rem;
}

footer .mail {
  background-color: black;
  color: white;
  width: 44%;
  font-weight: 600;
  font-size: 1.5rem;
}

footer .mail a {
  color: white;
}

/* >- MOBILE ------------------------------- */
@media only screen and (max-width: 767px) {
  footer {
    flex-direction: column;
  }
  footer .mail {
    width: 100%;
    justify-content: center;
  }
}



/* >- FONTS ------------------------------- */
@font-face {
  font-display: swap;
  font-family: 'Zen Dots';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/zen-dots-v12-latin_latin-ext-regular.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/source-sans-3-v15-latin_latin-ext-regular.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/source-sans-3-v15-latin_latin-ext-600.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/source-sans-3-v15-latin_latin-ext-700.woff2') format('woff2');
}


/* >- INDEX ----------------------------------- */
body.home  {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.home.bg {
  background: url("../img/under_construction.jpg") no-repeat;
  background-size: cover;
}

.home main {
  height: calc(100% - 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.home h1 {
  width: 80%;
  max-width: 60rem;
  text-align: center;
  font-size: 5rem;
  font-size: clamp(4.2rem, -3.333333333333334rem + 17.77777777777778vw, 10rem);
  margin-bottom: 1.5em;
}

.home h1 span {
  display: block;
  text-align: right;
}

.home main a {
  font-size: 2rem;
  font-size: clamp(2rem, 0.6666666666666665rem + 4.444444444444445vw, 4rem);
}




/* >- IMPRESSUM body:not(.home) { ------------------------------- */
body:not(.home) main {
  max-width: 1140px;
  margin-inline: auto;
  margin-block: 100px;
  padding-left: 15px;
  padding-right: 15px;
}


