@charset "UTF-8";
@font-face {
  font-family: "FranklinGothic";
  src: url("../webfonts/FranklinGothic.ttf") format("truetype");
}
@font-face {
  font-family: "DidactGothic";
  src: url("../webfonts/DidactGothic-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "NunitoSans";
  src: url("../webfonts/NunitoSans-Bold.ttf") format("truetype");
}
html, body {
  height: 100%;
  max-width: 95em;
  margin: 0 auto;
}

body {
  color: var(--text-color);
  display: flex;
  flex-direction: column;
  font-family: "FranklinGothic";
}

h1, h2, h3 {
  font-family: "NunitoSans";
  color: var(--header-color);
  margin-bottom: 0;
}

h2, h3 {
  margin-top: 1.5rem;
}

h1 ~ hr, h2 ~ hr, h3 ~ hr {
  margin-top: -0.2rem;
  height: 1px;
  border: none;
  background-color: var(--header-color);
}

.container {
  max-width: 85em;
  margin: 0 1vw;
  padding: 0 5% calc(5vh + 0.25rem) 5%;
}

.p-small {
  max-width: 70ch;
}

.hidden {
  visibility: hidden;
}

::selection {
  background: var(--selection-color);
}

.dark ::selection {
  color: black;
}

summary:hover {
  cursor: pointer;
}

:root {
  --light-background: #ffffff;
  --dark-background: #212121;
}

body.light {
  --text-color: #000000;
  --header-color: #000000;
  --background-color: var(--light-background);
  --alternating-background-color: #cccccc;
  --selection-color: #fddc05;
}

body.dark {
  --text-color: #cdcdcd;
  --header-color: #ffffff;
  --background-color: var(--dark-background);
  --alternating-background-color: #454545;
  --selection-color: #cccccc;
}

body {
  background: var(--background-color);
}

body.dark img {
  filter: brightness(0.8) contrast(1.2);
}

.desktop-menu-wrapper {
  margin: 3vw 2vw 0 2vw;
}

.desktop-menu-wrapper {
  display: block;
}

@media (max-width: 40em) {
  .desktop-menu-wrapper .menu-bar, .desktop-menu-wrapper .menu-logo {
    display: none !important;
  }
  .title-bar {
    display: block !important;
  }
}
.menu-bar div a:nth-child(1) {
  padding-right: 0.1rem;
}

.menu-bar div a:nth-child(1)::after {
  content: " ►";
}

.menu-bar div a:nth-child(2) {
  padding-left: 0.1rem;
}

.title-bar {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
}

.menu-title-seperator {
  display: none;
}

.menu-fullname {
  font-size: clamp(1.2rem, 2vw + 0.75rem, 2.5rem);
}

.menu-logo {
  grid-row: 1/3;
  grid-column: 2/3;
  margin-left: auto;
}

.desktop-menu.title-bar {
  font-size: clamp(1.6rem, 2.5vw + 1rem, 3rem);
  margin: 0 2ch;
  margin-bottom: 0.6rem;
}

.desktop-menu.menu-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin: 0 2ch;
  font-size: clamp(0.8rem, 1.3vw + 0.5rem, 2rem);
}

.menu-button {
  font-family: "NunitoSans";
}

.logo {
  height: clamp(2rem, 20vw + 1rem, 6rem);
  width: auto;
  border: 1px solid var(--text-color);
  margin: 5px;
}

@media (max-width: 40em) {
  .desktop.footer {
    display: none;
  }
}
.footer {
  position: fixed;
  bottom: 0;
  width: 100vw;
  max-width: 95em;
  background: var(--background-color);
}

.desktop.footer {
  height: max(2.7rem, min(5vh, 4rem));
}

.desktop.footer > .wrapper {
  margin: 0 2vw 0 2vw;
}

.desktop.footer .wrapper .content {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.desktop.footer .wrapper .content .theme-button {
  margin: 0 0;
}

.desktop.footer .wrapper .content .right-content {
  display: flex;
  align-items: center;
}

@media (min-width: 40em) {
  .mobile.footer {
    display: none;
  }
}
footer hr {
  margin-top: 0;
}

.mobile.footer {
  left: 0;
  z-index: 3;
  position: fixed;
  height: 2.5rem;
  bottom: 0;
}

.mobile-menu-bar {
  display: inline-block;
  margin-left: auto;
  margin-right: 0.25em;
}

.mobile-menu-content div a:nth-child(1)::after {
  content: " ►";
}

.mobile-menu-content div a:nth-child(1) {
  padding-right: 0.7rem;
}

.bar-button {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 1;
  -webkit-appearance: none;
  border: 0;
  background: transparent;
  border-radius: 0;
  width: 30px;
  cursor: pointer;
  pointer-events: auto;
  margin: 0 0.25em 0.5em auto;
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  z-index: 2;
}

.icon-bar {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--text-color);
  transition: 0.3s;
}

.icon-bar + .icon-bar {
  margin-top: 5px;
}

#mobileMenuCheckBoxButton {
  display: none;
}

input[type=checkbox]:checked ~ label .icon-bar:nth-of-type(1) {
  transform: translate3d(0, 8px, 0) rotate(45deg);
}

input[type=checkbox]:checked ~ label .icon-bar:nth-of-type(2) {
  opacity: 0;
}

input[type=checkbox]:checked ~ label .icon-bar:nth-of-type(3) {
  transform: translate3d(0, -8px, 0) rotate(-45deg);
}

.mobile-menu-content {
  position: absolute;
  padding-bottom: 37px;
  bottom: 0;
  right: 0;
  max-height: 50vh;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0 2ch;
  font-size: clamp(0.5rem, 4vh + 1rem, 1.5rem);
  transform: translateX(100vw);
  z-index: 2;
}

.mobile-menu-content > a:nth-child(1) {
  transform: translateX(100vw);
  transition: transform 0.115s;
}

.mobile-menu-content > a:nth-child(2) {
  transform: translateX(100vw);
  transition: transform 0.23s;
}

.mobile-menu-content > a:nth-child(3) {
  transform: translateX(100vw);
  transition: transform 0.345s;
}

.mobile-menu-content > a:nth-child(4) {
  transform: translateX(100vw);
  transition: transform 0.46s;
}

.mobile-menu-content > a:nth-child(5) {
  transform: translateX(100vw);
  transition: transform 0.575s;
}

.mobile-menu-content > a:nth-child(6) {
  transform: translateX(100vw);
  transition: transform 0.69s;
}

.mobile-menu-content > a:nth-child(7) {
  transform: translateX(100vw);
  transition: transform 0.805s;
}

.mobile-menu-content > a:nth-child(8) {
  transform: translateX(100vw);
  transition: transform 0.92s;
}

.mobile-menu-content > a:nth-child(9) {
  transform: translateX(100vw);
  transition: transform 1.035s;
}

.mobile-menu-content > a:nth-child(10) {
  transform: translateX(100vw);
  transition: transform 1.15s;
}

.mobile-menu-background {
  visibility: hidden;
  position: fixed;
  inset: 0;
  height: 100%;
  z-index: 1;
}

input[type=checkbox]:checked ~ .mobile-menu-content {
  transform: none;
}

input[type=checkbox]:checked ~ .mobile-menu-content > .button {
  transform: none;
}

input[type=checkbox]:checked ~ .mobile-menu-background {
  visibility: visible;
  background-image: linear-gradient(135deg, #cccccc, 80%, #fddc05);
  -webkit-filter: opacity(70%);
  -moz-filter: opacity(70%);
  filter: opacity(70%);
  backdrop-filter: blur(9px);
}

.dark input[type=checkbox]:checked ~ .mobile-menu-background {
  background-image: linear-gradient(135deg, #fddc05, 20%, #cccccc);
}

.mobile.theme-button {
  position: absolute;
  top: 0;
  bottom: 0;
  padding: 0.1rem;
  border: 1px solid black;
  margin: 5px 0 0.5em 0.25em;
}

.mobile.imprint-ref {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.mobile-footer-wrapper {
  width: 100%;
}

.button {
  display: inline-block;
  text-decoration: none;
  font-family: "FranklinGothic";
  padding: 0.3rem 1.1rem;
  margin: 0.3rem 0 0.3rem;
  color: var(--text-color);
  background-image: linear-gradient(0deg, #fddc05, #fddc05);
  background-repeat: no-repeat;
  background-size: 0 100%;
  background-position: right 0 bottom 0;
  transition: background-size 0.4s ease, fill 0.4s ease;
}

.button:hover,
.button:focus {
  background-size: 100% 100%;
  transition: background-size 0.4s ease, color 0.4s ease, fill 0.4s ease;
  background-position: left 0 bottom 0;
}

.dark .menu-button {
  color: var(--light-background);
}

.dark .menu-button:hover,
.dark .menu-button:focus {
  color: var(--dark-background);
}

.light .menu-button {
  color: var(--dark-background);
}

.dark .mobile-menu-content .button {
  background: var(--dark-background);
}

.light .mobile-menu-content .button {
  background: var(--light-background);
}

.dark .theme-button {
  background: var(--light-background);
  color: black;
}

.light .theme-button {
  background: var(--dark-background);
  color: white;
}

a {
  display: inline;
  position: relative;
  text-decoration: none;
  color: var(--text-color);
  padding-bottom: 2px;
  background-image: linear-gradient(90deg, var(--text-color) 0%, var(--text-color) 50%, #fddc05 50%, #fddc05 100%);
  background-position: 0 100%;
  background-size: 200% 2px;
  background-repeat: no-repeat;
  transition: background-size 0.3s, background-position 0.3s;
}

a:hover, a:focus {
  background-position: 100% 100%;
  transition: background-size 0.3s, background-position 0.3s;
}

a.none {
  text-decoration: none;
  background-image: none;
}

.seminar-table summary::after {
  content: " ► More";
}

.seminar-table details[open] summary:after {
  content: " ▼ Close";
}

.publication summary::after {
  content: " ► Open Abstract";
}

.publication details[open] summary:after {
  content: " ▼ Close Abstract";
}

.table {
  border-collapse: inherit;
  border-spacing: 0;
  max-width: 100%;
}

@media only screen and (max-width: 40em) {
  tr.mobile-grid {
    display: flex;
    flex-wrap: wrap;
    padding: 0.2rem 0 0.5rem 0;
  }
  th, td {
    padding-right: 2.5px !important;
    padding-left: 2.5px !important;
  }
}
a.cssbox_close,
a.cssbox_prev,
a.cssbox_next,
span.cssbox_full {
  visibility: hidden;
}

span.cssbox_full {
  display: none;
}

.cssbox.img-container a {
  display: inline-block;
  text-decoration: none;
  pointer-events: none;
}

/* The work below, CSSBox, is released under the Creative Commons
   Attribution-ShareAlike 4.0 license and is available on
   https://github.com/TheLastProject/CSSBox. You are not required to add
   additional credit to your website, just leave the above text in this file */
@media (min-width: 40em) {
  div.cssbox {
    display: inline-block;
  }
  .cssbox.img-container a {
    display: inline-block;
    text-decoration: auto;
    pointer-events: auto;
  }
  span.cssbox_full {
    display: inline;
    z-index: 999999;
    position: fixed;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    top: 0;
    left: 0;
    opacity: 0;
    pointer-events: none;
    cursor: default;
  }
  span.cssbox_full img {
    position: fixed;
    background-color: white;
    margin: 0;
    padding: 0;
    max-height: 90%;
    max-width: 90%;
    height: auto;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 20px black;
  }
  a.cssbox_close,
  a.cssbox_prev,
  a.cssbox_next {
    z-index: 999999;
    position: fixed;
    text-decoration: none;
    visibility: hidden;
    color: white;
    font-size: 36px;
  }
  a.cssbox_close {
    top: 1%;
    right: 1%;
  }
  a.cssbox_close::after {
    content: "×";
  }
  a.cssbox_prev,
  a.cssbox_next {
    top: 50%;
  }
  a.cssbox_prev {
    left: 5%;
  }
  a.cssbox_next {
    right: 5%;
  }
  a:target ~ a.cssbox_close,
  a:target ~ a.cssbox_prev,
  a:target ~ a.cssbox_next {
    visibility: visible;
  }
  a:target > img.cssbox_thumb + span.cssbox_full {
    visibility: visible;
    opacity: 1;
    pointer-events: initial;
  }
}
/* This is the end of CSSBox */
.profile-picture {
  max-width: 25ch;
}

.group-picture {
  max-width: 50ch;
  width: clamp(30ch, 40vw, 50ch);
  height: auto;
}

.profile-picture-wrapper {
  display: flex;
  align-items: center;
}

@media (min-width: 40em) {
  .contact-information-wrapper {
    display: flex;
    justify-content: space-between;
  }
  .profile-picture-wrapper {
    order: 2;
    margin: 0;
  }
}
table.align {
  width: 0 auto;
  border-collapse: separate;
}

table.align th {
  text-align: right;
  width: auto;
}

table.align td {
  text-align: left;
  width: auto;
  padding-left: 1ch;
}

.group-information-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}

@media only screen and (max-width: 50em) {
  .group-information-wrapper {
    flex-direction: column;
  }
}
.group-member {
  display: grid;
  grid-template-columns: 5fr fit-content(45%);
  grid-template-rows: auto 1fr;
  padding: 0.25em;
  flex: 0 0 45%;
}

.member-name {
  font-size: 1.25em;
  font-weight: 600;
}

.member-position {
  font-style: italic;
}

.member-profile-picture {
  max-width: 12ch;
}

.member-profile-picture-wrapper {
  grid-row: 1/3;
  grid-column: 2/3;
}

.publication {
  padding: 0.2em 0.2em;
}

.publication:nth-child(2n) {
  background: var(--alternating-background-color);
}

.publication .button {
  outline: 1px solid var(--text-color);
}

.publication-links {
  min-height: 1.3em;
  width: 100%;
}

.publication-title {
  min-height: 2em;
}

.abstract-wrapper {
  padding-top: 0.4rem;
}

.research-topic-main {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

@media (max-width: 40em) {
  .research-topic-main {
    display: block;
  }
}
.research-topic-description {
  flex-grow: 1;
  padding-right: 20px;
}

@media (max-width: 40em) {
  .research-topic-description {
    padding-right: 0px;
  }
}
.research-topic-description p {
  max-width: none;
}

.cssbox_thumb {
  max-width: clamp(3rem, 30vw + 1rem, 30rem);
}

@media (max-width: 40em) {
  .cssbox_thumb {
    max-width: 100%;
  }
}
.teaching-year {
  display: flex;
  justify-content: space-evenly;
}

@media (max-width: 40em) {
  .teaching-year {
    flex-direction: column;
    gap: 1.25em;
  }
}
.teaching-semester {
  flex: 50%;
  margin-right: 0.5em;
  margin-bottom: 0.5em;
}

.semester-title {
  font-weight: 600;
  font-size: 1.3rem;
  float: left;
  margin-right: 0.5em;
}

.courses {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
}

.course {
  margin-bottom: 0.75em;
}

.course-note {
  margin-top: 0.05em;
}

.cv-from {
  padding-right: 0.5em;
}

.cv-to {
  padding: 0 0.5em;
}

.cv-list-content {
  padding-left: -5rem;
}

h1.bottom-spaced {
  margin-bottom: 1.5rem;
}

.news-year {
  font-weight: 600;
  vertical-align: top;
}

@media only screen and (max-width: 40em) {
  .hidden {
    visibility: visible;
  }
}
.news-entry:nth-child(2n+1) {
  background: var(--alternating-background-color);
}

.author-wrapper {
  padding-right: 0.04rem;
  display: flex;
  flex-direction: column;
}

@media only screen and (max-width: 40em) {
  .author-wrapper {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.news-title {
  width: 100%;
}

.news-room, .news-date, .news-time {
  white-space: nowrap;
  vertical-align: top;
}

.news-author {
  white-space: nowrap;
  padding: 0 1em;
  vertical-align: top;
}

th, td {
  padding: 7.5px;
}

.thumb_news {
  max-width: clamp(3rem, 10vw + 1rem, 10rem) !important;
  float: left;
}

@media (max-width: 40em) {
  .thumb_news {
    max-width: 100% !important;
  }
}

/*# sourceMappingURL=main.css.map */