/* =========================
   COLOR SYSTEM
   ========================= */

:root {
  --bg: #f9f9f9;
  --text: #000000;
  --border: #000000;
}

/* Invert Mode */
body.invert {
  --bg: #000000;
  --text: #f9f9f9;
  --border: #f9f9f9;
  transition: 0.35 ease;
}

/* =========================
   GLOBAL
   ========================= */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background-color: var(--bg);
  color: var(--text);
  font-family: kingdom;
}

/* Links */
a {
  color: var(--text);
  text-decoration: none;
}

.nav:hover {
  opacity: 0.6;
}

/* =========================
   HEADER
   ========================= */

header {
  margin: 10px;
  padding-bottom: 5px;
  position: sticky;
  top: 0px;

  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  width: calc(100vw – 20px) ;

  font-size: 15px;

  background-color: var(--bg);
  color: var(--text);
  border-bottom: 1.2px solid var(--border);

  z-index: 110;
}

/* =========================
   LOGO
   ========================= */

.logo {
  position: relative;
  line-height: 120%;
  width: 20%;
  align-self: flex-start;
}

/* =========================
   MENU
   ========================= */

.menu {

  /* position: relative; */
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;

  width: 50%;
  line-height: 120%;

      flex-wrap: wrap;
}

/* =========================
   NAVIGATION
   ========================= */

.navigation {
  display: flex;
  /* gap: 20px; */
  width: 100%;
  justify-content: space-between;
align-items: flex-end;
}



.ansicht button {
    font-family: kingdom;
    font-size: 15px;
    cursor: pointer;
    background-color: var(--bg);
    color: var(--text);
    transition: 0.3s;
    background-color: none;
    border: none;
    text-decoration: none;
    padding: none;
    margin: none;
    line-height: 100%;
}

.ansicht button:hover {
    opacity: 0.5;
}

/* =========================
   MAIN CONTENT
   ========================= */

/* main {
  padding: 10px;
} */

.content-right {
  max-width: 800px;
}

.teaser {
  margin-bottom: 20px;
}

.time-stamp {
  margin-top: 20px;
  font-size: 13px;
  opacity: 0.7;
}



/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 768px) {


  .logo {
    width: 50%;
  }

  .info-btn {
    display: none;
  }

  .navigation {
    width: 100%;
  }

  .menu {
        left: 50%;
    width: 50vw;
    flex-wrap: wrap;
  }
}


