@font-face {
  font-family: "ArialNarrow";
  src: url("/assets/fonts/arial/ArialNarrow.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

:root {
  --placeholder-bg: #fff;
  --placeholder-text: #000;
  --placeholder-circle-bg: #000;
  --placeholder-circle-text: #fff;
  --placeholder-header-height: 47px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  width: 100%;
}

body.tt-placeholder {
  background: var(--placeholder-bg);
  color: var(--placeholder-text);
  font-family: "ArialNarrow", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

.tt-placeholder__header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  height: var(--placeholder-header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 5px 10px;
  background: #fff;
}

.tt-placeholder__nav-link {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-size: 35px;
  line-height: 1.06;
  letter-spacing: 0.003em;
  padding: 0;
  cursor: pointer;
}

.tt-placeholder__headline {
  margin: 0;
  font-size: 35px;
  line-height: 1.15;
  letter-spacing: 0.01em;
  font-weight: normal;
}

.tt-placeholder__message {
  margin: 0.8rem 0 0;
  font-size: 15px;
}

.tt-placeholder__main {
  width: 100%;
}

.tt-placeholder__section {
  min-height: 100dvh;
  scroll-margin-top: 0;
}

.tt-placeholder__section--intro {
  display: grid;
  place-items: center;
  text-align: center;
  padding: 2rem;
}

.tt-placeholder__intro-content {
  max-width: 44rem;
}

.tt-placeholder__section--imprint {
  display: grid;
  place-items: center;
  padding: 2rem;
}

.tt-placeholder__circle {
  width: 100%;
  max-width: 800px;
  border-radius: 50%;
  background: var(--placeholder-circle-bg);
  color: var(--placeholder-circle-text);
  display: grid;
  align-content: center;
  gap: 0;
  text-align: center;
  padding: 80px
}

.tt-placeholder__circle p {
  margin: 0;
  font-size: 15px;
  line-height: 1.15;
}

a {
  text-decoration: none;
}

u {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.tt-placeholder__circle a {
  color: inherit;
}

.tt-placeholder__circle a:hover {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

@media (max-width: 50em) {

  :root {
    --placeholder-header-height: 30px;
  }

  .tt-placeholder__nav-link {
    font-size: 15px;
  }

  .tt-placeholder__headline {
    font-size: 35px;
  }

  .tt-placeholder__circle {
    padding: 40px 60px;
  }

  .tt-placeholder__section--intro {
    padding: 10px;
  }

  .tt-placeholder__section--imprint {
    padding: 10px;
  }


}