A:link    {color:#ffe080}
A:visited {color:#ffe080}
A:hover   {color:#ffcc00}

@media screen and (max-width:719px) {
  :root {
    --vscale: 0.9;
  }
}

@media screen and (min-width:720px) {
  :root {
    --vscale: 1.0;
  }
}

@media screen and (min-width:1440px) {
  :root {
    --vscale: 1.1;
  }
}

body       {font-family:Calibri,Candara,sans-serif; font-weight:normal; font-size:calc(10.0pt*var(--vscale)); line-height:calc(13pt*var(--vscale)); color:#ffffff; letter-spacing:0.20px; background-color:#000000}
.TextBold  {font-family:Calibri,Candara,sans-serif; font-weight:bold;   font-size:calc(10.0pt*var(--vscale)); line-height:calc(13pt*var(--vscale)); color:#ffe080; letter-spacing:0.20px; background-color:#000000}

.HorizLine {height:1px; background-color:#ffe080}
.ImageFace {position:relative; top:0px; width:250px; height:250px; border:0px}
.ImageCD   {position:relative; top:0px; width:182px; height:182px; border:0px}

.grid {
  max-width: 782px;
  margin: auto;
  background: black;
  display: grid;

  grid-template-columns: auto 1fr;
  grid-column-gap: calc(50px*var(--vscale));
  grid-template-rows: 200px auto auto auto auto auto auto;
  grid-template-areas:
    "logo logo"
    "hline hline"
    "navtop navtop"
    "left righttop"
    "left rightbottom"
    "wide wide"
    "navbottom navbottom";
}

.grid logo {
  grid-area: logo;
  background: url("Zita-Tschirk-Piano.jpg");
}

.grid hline {
  grid-area: hline;
}

.grid navtop {
  grid-area: navtop;
  justify-self: end;
}

.grid left {
  grid-area: left;
}

.grid righttop {
  grid-area: righttop;
  align-self: start;
}

.grid rightbottom {
  grid-area: rightbottom;
  align-self: end;
}

.grid navbottom {
  grid-area: navbottom;
  justify-self: end;
}

.grid2 {
  max-width: 782px;
  margin: auto;
  background: black;
  display: grid;

  grid-template-columns: auto 1fr;
  grid-column-gap: calc(50px*var(--vscale));
  grid-template-rows: auto auto;
  grid-template-areas:
    "left righttop"
    "navbottom navbottom";
}

.grid2 left {
  grid-area: left;
}

.grid2 righttop {
  grid-area: righttop;
  align-self: start;
}

.grid2 navbottom {
  grid-area: navbottom;
  justify-self: end;
}
