.body {
  background-image: url(../pics/meta/blauerWombat.svg);
  background-position: left top;
  background-size: contain;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-color: var(--body_background);
  color: var(--body_color);
  margin: 0;
}

.bodySmooth {
  transition: color 1s ease, background-color 1s linear;
}

.main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 220px);
  /* margin-bottom: 73px; */
  margin-top: 10px;
  letter-spacing: 0.01em;
}

.slat-bg {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
  width: 100%;
  background-color: var(--slat-bg_background);
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  /* box-shadow: 0 2px 4px var(--shadow); */
  padding: 15px 0px;
}

.slat {
  width: 90%;
  max-width: 1280px;
  background-color: var(--slat_background);
  border-radius: 3px;
  /* box-shadow: 0 2px 4px var(--shadow); */
  /* box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); */
  backdrop-filter: blur(5px);
  padding: 20px;
}

.big-headline {
  /* color: #0592d0; */
  font-family: var(--secondary-font);
  letter-spacing: 2px;
  color: var(--big_headline_color);
  text-align: center;
  /* text-shadow: var(--big_headline_shadow); */
}

.sub-headline {
  display: flex;
  flex-direction: row;
  justify-content: right;
}

.subhead {
  display: flex;
  justify-content: center;
  width: 50%;
  text-align: center;
  letter-spacing: 2px;
  height: 100%;
}

.description, .intro-box, .faq-path {
  line-height: 2em;
  font-size: 16px;
} 

sup {
  font-size: x-small;
}

.description, .faq-path p {
  text-align: center;
}

.intro-box {
  /* background-color: var(--eyecatcher_background); */
  opacity: 0.9;
  box-shadow: 0 0 0 5px var(--eyecatcher_background);
  margin: 10px 0;
  /* border: solid;
  border-color: var(--eyecatcher_background);
  border-width: 10px; */
}

.box-text {
  text-align: center;
  font-weight: bold;
  line-height: 2em;

  /* color: var(--eyecatcher_color); */
}

.special {
  /* font-weight: bold; */
  text-decoration: underline;
  letter-spacing: 0.15em;
}

.box-button, .path-button, .btn, .contact-button {
  border: none;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  cursor: pointer;
  margin-top: 20px;
  border-radius: 5px;
  opacity: 1;
  background-color: var(--button_background);
  color: var(--button_color);
}

/* .btn, .path-button, .box-button  {
  opacity: 0.9;
} */

/* .box-button {
  background-color: var(--dark_background);
  color: var(--wombat_white);
} */

/* .path-button, .contact-button, .btn, .box-button {
  // background-color: rgba(33, 33, 33, 0.9);
  background-color: var(--button_background);
  color: var(--button_color);
} */

/* .box-button {
  background-color: var(--body_background);
  color: var(--big_headline_color);
} */

.issuesHeader {
  text-align: center;
}

.collapsible {
  cursor: pointer;
}

.plus-minus {
  float: right;
}

.content {
  display: none;
}

/* footer */

.footer-links {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: space-around;
  overflow-wrap: break-word;
  margin: 10px;
  max-width: 750px;
  width: 90%;
}

.close-menu {
  display: none;
  font-size: 2em;
  position: absolute;
  top: 10px;
  right: 40px;
}

@media (min-width: 769px){
  .footer-links {
    display: flex;
  }

  .burger-menu, .footer-hl  {
    display: none;
  }

}
@media (max-width: 768px){
  .footer-links {
    display: none;
    flex-flow: column;
    align-items: flex-start;
  }

  .footer-link {
    margin: 10px 0px;
  }

  .footer-hl {
    display: flex;
  }

  .burger-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    width: 30px;
    height: 20px;
    cursor: pointer;
    align-self: center;
    /* position: fixed; */
    /* bottom: 10px; */
    /* left: 10px; */
    /* z-index: 999; */
  }
  
  .line {
    width: 100%;
    height: 2px;
    background-color: var(--footer_color);
    transition: all 0.3s ease;
  }
  
  .line:last-child {
    margin-bottom: 0;
  }
}

.footer-links a {
  color: var(--footer_link_color);
  text-decoration: none;
  padding: 5px 10px;
  margin-bottom: 5px;;
  transition: color 0.3s ease;
  line-height: 1.5em;
}

.footer-links a:hover {
  color: var(--footer_link_hover_color);
}

.vertical-line {
  width: 1px;
  height: 20px;
  background-color: var(--footer_link_color);
  margin: 0 10px;
}

.footer-links-top {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  overflow-wrap: break-word;
}

.footer-link {
  flex-grow: 1;
}


.footer {
  background-color: var(--footer_background);
  opacity: 0.95;
  color: var(--footer_color);
  padding: 10px;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  text-align: center;
  justify-content: center;
  position: fixed;
  bottom: 0;
  left: 0;
  width: calc(100vw - 20px);
  z-index: 100;
  /* height: 53px; */
  /* transition: height 1s ease; */
  /* backdrop-filter: blur(5px); */
  border-top: 1px solid var(--accent-color);
  transition: all 0.3s linear;

}

.footer-hl {
  margin: 10px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-grow: 2;
  color: var(--accent-color);
  font-size: 1.6em;
  letter-spacing: 2px;
  /* font-size: 1.2vw; */
}

.footer-hl a {
  text-decoration: none;
  color: var(--big_headline_color);
}

.cr-sol {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;
  justify-items: center;
  /* width: 100vw; */
  text-align: right;
  /* margin-right: 10px; */
  font-size: smaller;
  padding: 10px;
}

/* theme changer */
.themeSwitch {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: end;
  justify-items: center;
  border-top: 1px solid  var(--footer_color);;
  padding-top: 10px;
}

.mood {
  display: flex;
  flex-direction: row;
  margin: 0 10px;
  height: 24px;
}

.mood-button {
  border-radius: 50%;
  padding: 0;
  border: none;
  cursor: pointer;
  width: 24px;
  height: 24px;
}

.moon {
  background-color: var(--moon_background);
}

.sun {
  background-color: var(--accent-color);
}

.expanded {
  height: 121px;
}

.estTime {
  float: right;
  text-align: right;
}


/* contact page */

.respContainer {
  display: flex;
  flex-direction: column;
  padding: 20px;
  line-height: 1.5em;
}

.respRow {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 10px;
}

.respKey, .respVal {
  margin: 10px 10px;
  width: 50%;
}

.respKey {
  font-weight: bolder;
}

.respVal a, .textlink a {
  color: var(--link_color);
  letter-spacing: 2px;
  text-decoration: none;
}

.respVal a:hover {
  color: var(--link_hover_color);
}

.screenshare {
  width: calc(100vw - 2%);
  height: calc(100vh - 150px);
}