
body {
grid-template-rows: auto;
background-color: var(--hintergrund-1);
}
header {
padding-bottom: 2.5vh;
}
main {
display: grid;
grid-template-columns: 1fr;
grid-template-rows:  auto;
grid-template-areas:
"impressum-text";
background-color: var(--hintergrund-1);
overflow: hidden;
min-height: calc(100vh - 2vh - 5px);
}
.eigenlink {
color: var(--textfarbe-5)
}
#impressum-text {
grid-area: impressum-text;
background-color: var(--hintergrund-1);
color: var(--textfarbe-1);
margin: 22.5vh 0 5vh 0;
padding: 0vh 5%;
text-align: center;
font-size: calc(12px + (26 - 12) * ((100vw - 100px) / (2000 - 100)));
font-weight: 100;
min-height: 100%;
}
#impressum-kontakt {
line-height: 1.75;
font-weight: 700;
}

a#eu:link { 
color: var(--textfarbe-10);
text-decoration: underline;
letter-spacing: .1;
font-size: 95%;
font-weight: 600;
}
a#eu:hover {
color: var(--textfarbe-1);
font-weight: 600;
}

@media screen and (min-width: 400px) and (min-height: 300px){
body {
grid-template-rows: 10vh 85.5vh 4vh;
}
}
