html,
body,
head,
ul,
li,
a,
p,
h1,
h2,
h3,
a {
  margin: 0;
  padding: 0;
  text-decoration: none;
  color: black;
}

body, html {
  overflow-y: auto;
}

.hover-shadow:hover {
  /* text-shadow: 1px 0 15px rgb(109, 109, 109); */
  text-shadow: 1px 0 15px rgb(135, 135, 135);
}

body {
  padding: 2rem;
}
.font-big {
  font-family: "Arial Narrow", Arial, sans-serif;
  font-style: normal;
  font-weight: 100;
  font-size: 3.8rem;
}
.font-small {
  font-family: "Helvetica Neue Medium", "HelveticaNeue-Might", "Helvetica Neue",
    Helvetica, Arial, "Lucida Grande", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  hyphens: auto;
}
.popup-front {
  width: 100dvw;
  height: 100dvh;
  background-color: transparent;
  position: fixed;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}
#popup-front-inner {
  width: 50%;
  height: fit-content;
  max-height: 80dvh;
  pointer-events: none;
  text-align: center;
}
.popup-front-image {
  max-height: 80dvh;
  pointer-events: none;
}

.about {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  margin-bottom: 4rem;
}
.about-article {
}
.about-footnotes {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 4rem;
}
.tab {
  margin-left: 0.6rem;
}
.footnote {
  list-style-type: none;
}
.footer-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.footer-info-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
  width: 90%;
}
.footer-card {
}
.footer-ul {
  list-style: none;
}
.footer-li {
}
.footer-imprint {
}
.footer-imprint-button {
  color: black;
  text-decoration: none;
}

#imprint-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
  width: 70%;
}

.clickable {
  cursor: pointer;
}

.cover-section {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 4rem;
}
.cover-image-wrapper {
  width: 100px;
}
.cover-image {
  width: 100%;
}

@media only screen and (max-width: 1000px) {
  .footer-info-wrapper {
    display: flex;
    justify-content: left;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
  }
}

@media only screen and (max-width: 600px) {
  .font-big {
    font-size: 2rem;
  }
  .font-small {
    font-size: 0.8rem;
  }
  #imprint-wrapper {
    width: 100%;
  }
  .popup-front {
    display: none;
  }
  .cover-image-wrapper {
    width: 100%;
  }
}
