@charset "UTF-8";


:root {
--colorLogoBack: #271F1D;
--colorLogoFont: #A6A9B0;
--fontSizeBig: 5vh;
}


/*** Bereiche: ***/


body {
  margin: 0;
  height: 100vh;
}


header {
  border-left: 1ex solid var(--colorLogoBack);
  background: var(--colorLogoBack) url(cafeamdom-logo.jpg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left center;
  padding: 1ex 1ex 1ex 3em;
  color: var(--colorLogoFont);
  font-size: var(--fontSizeBig);
  text-align: center;
}


main {
  background: url(cafeamdom-logo-bg.jpg);
  background-size: 33.3%;
  background-position: center left;
  padding: 1ex;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

main a {
  font-weight: bold;
  text-decoration: none;
  color: #008;
}


footer {
  background: var(--colorLogoBack);
  padding: 2px 1ex;
  color: var(--colorLogoFont);
  text-align: center;
}

footer * {
  color: var(--colorLogoFont);
  text-decoration: none;
}


/*** Abschnitte: ***/


section {
  width: 90%;
  max-width: 60em;
  height: fit-content;
  margin: 1ex;
  border: 1px solid #aaa;
  border-radius: 4ex;
  background: #fff;
  padding: 1ex;
}


section img {
  width: 25vw;
  max-width: 20em;
  border-radius: 3ex;
  float: right;
  margin-left: 1ex;
}

section h1 {
  margin: 0;
}
section h1::before {
  content: '/// ';
  color: green;
}
section h1::after {
  content: ' ///';
  color: red;
}

section p {
  margin: 1ex 0;
  font-size: 110%;
}

section p span[title] {
  cursor: help;
}

section td {
  vertical-align: top;
  padding-right: 1em;
}

section a {
  
}


/*** Spezielle Formatierungen: ***/


.golden {
  animation: golden 2s 2s infinite alternate ease-in-out;
}

@keyframes golden {
  to {color:#FFD700; text-shadow:0 0 1ex}
}


/*** Layout: ***/


body {
  display: grid;
  grid-template-areas: "header" "main" "footer";
  grid-template-rows: auto 1fr auto;
}


header {
  grid-area: header;
}


main {
  grid-area: main;
  overflow: auto;
}


footer {
  grid-area: footer;
}


@media (orientation: portrait) {
:root {
--fontSizeBig: 1rem;
}
section img {
  width: 100%;
  max-width: 100%;
  float: unset;
  margin: 0;
  height: 40vw;
  object-fit: cover;
  object-position: center center;
}
}/*media*/