:root {
  --content-width: 100%;
}

*,
*:after,
*:before{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";;
  letter-spacing: .05rem;
}

li {
  list-style: none;
}

a {
  color: currentColor;
  text-decoration: none;
}

strong, b {
  font-weight: 500;
}

img {
  width: 100%;
}

.page {
  padding: 5vh 5vw 10vh;
}
.page > * {
  max-width: var(--content-width);
  margin: 0 auto;
}

.header {
  margin-bottom: 1.5rem;
}

.header a {
  position: relative;
  font-size: 1rem;
  letter-spacing: .05em;
  padding: .12rem 0;
}

.header .logo {
  display: block;
  margin-bottom: .5rem;
  font-size: 2.6rem;
  line-height: 2rem;
}


.header .underlogo {
  text-transform: uppercase;
  font-size: 1.2rem;
  text-align: center;
}


.header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: baseline;
}

.menu a {
margin-bottom: 2rem;
padding-left: 1rem;
line-height: 2rem;
}

.menu {
  text-align: right;
}

main {
  min-height: 70vh;
}


@media screen and (max-width: 1024px) {
.header {
  margin-bottom: 1rem;
}

.header a {
  font-size: .9rem;
}

.header .logo {
  font-size: 2rem;
}
.menu a {
margin-bottom: 2rem;
line-height: 1.5rem;
}
}


.text {
  line-height: 1.5em;
}
.text p,
.text figure,
.text ul,
.text ol {
  margin-bottom: 1.5em;
}
h1 {
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
}
.text > *:first-child {
  margin-top: 0;
}
.text a {
  position: relative;
  white-space: nowrap;
  z-index: 1;
  display: inline-block;
  border-bottom: 1px solid #000;
}
.text figure {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.text img {
  width: 100%;
}

.text {
  max-width: 35rem;
 
}

.text.imprint {
  margin-top: 10vh;
}

.footer {
  padding: 1.5rem 5vw 10vh;
  text-align: left;
  max-width: var(--content-width);
  margin: 0 auto;
  line-height: 1.5em;
   font-size: .8rem;
}

@media screen and (max-width: 1024px) {
.footer {
  bottom: 1vh;
}
}

.footer a {

	padding: .12rem 0;
}

