:root {
  --background-color: #848485;
  --darker-background-color: #243848;
  --accent-color: #a40b27;
  --menutext-color: #ffffff;
  --text-color: #ffffff;
  --navbar-height: 80px;

  --site-background: rgb(214, 184, 203);
  --frame-background: #ee6d85;
  --button-background: beige;
  --button-text-color: black;
}

* {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--menutext-color);
}

a {
  color: blue;
  text-decoration: none;
}

html {
  height: 100%;
}
body {
  height: 100%;
  background-color: var(--background-color);
}

.img_style {
  border: 2px solid white;
  box-shadow: 5px 5px rgb(95, 94, 94);
}

nav .logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 30px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 35px;
  font-variant: small-caps;
  text-decoration: none;
  box-shadow: 2px 2px 4px black;
}

nav {
  height: var(--navbar-height);
  background: var(--background-color);
  color: var(--menutext-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav ul {
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  list-style: none;
}

nav li {
  color: var(--menutext-color);
  height: 100%;
  width: 150px;
  text-align: center;
  position: relative;
}

nav li:hover {
  background: var(--accent-color);
}

nav ul a {
  height: 100%;
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--menutext-color);
  text-decoration: none;
}

.dropdown {
  height: min-content;
  width: 200px;
  background: var(--background-color);

  display: none;
  flex-direction: column;

  position: absolute;
  left: 0;
  top: var(--navbar-height);
}

.dropdown li {
  height: 40px;
  width: 100%;
}

.dropdown li a {
  justify-content: flex-start;
  padding-left: 30px;
  width: calc(100% - 30px);
}

nav li:hover .dropdown {
  display: flex;
}

nav input[type="checkbox"] {
  display: none;
}

.expandable_li {
  display: flex;
  justify-content: center;
  align-items: center;
}
.toggle_button {
  width: 30px;
  height: 23px;

  position: absolute;
  top: 25px;
  right: 25px;

  display: none;
  flex-direction: column;
  justify-content: space-between;
}

.bar {
  height: 4px;
  width: 100%;
  background: var(--menutext-color);
  border-radius: 100px;
}

@media (max-width: 800px) {
  .toggle_button {
    display: flex;
  }
  nav ul {
    height: min-content;
    width: 80%;

    background: var(--darker-background-color);
    border: solid 1px rgb(57, 52, 52);

    display: none;
    position: absolute;
    top: var(--navbar-height);
  }

  nav li {
    height: min-content;
    width: 100%;
  }

  nav li a {
    padding: 20px 0;
  }

  .expandable_li {
    display: block;
  }

  .expandable_li label {
    padding: 20px 0;
    cursor: pointer;
    display: block;
  }

  .expandable_li:hover .dropdown {
    display: none;
  }

  .expandable_li input[type="checkbox"]:checked ~ .dropdown {
    display: block;
  }

  .dropdown {
    position: static;
    width: 100%;
  }

  .dropdown li {
    padding: 0;
    display: block;
    position: static;
    background: var(--darker-background-color);
  }

  .dropdown li a {
    width: 100%;
    padding: 0;
    justify-content: center;
  }

  #toggle_button:checked ~ ul {
    display: block;
  }
}

.Header {
  padding-top: 2rem;
  background-color: var(--background-color);
  height: max-content;
}

.header_img {
  display: flex;
  justify-content: center;
}

.headline_img_style {
  height: 10rem;
  width: 100%;
  object-fit: cover;
  object-position: center;

  box-shadow: 2px 2px 4px black;
}

@media (min-width: 801px) {
  .headline_img_style {
    height: 15rem;
    width: 100%;
    object-fit: cover;
    object-position: center;

    box-shadow: 2px 2px 4px black;
  }
}

@media (min-width: 1600px) {
  .headline_img_style {
    height: 20rem;
    width: 100%;
    object-fit: cover;
    object-position: center;

    box-shadow: 2px 2px 4px black;
  }
}

h1 {
  font-size: large;
  display: flex;
  justify-content: center;
  text-shadow: 10px 10px 5px var(--accent-color);
}

h2 {
  color: var(--accent-color);
}

h3 {
  padding-left: 1rem;
}

.Text {
  font-size: medium;
  padding-left: 1rem;
  padding-top: 0.2rem;
}

.Text_Absatz {
  font-size: medium;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.2rem;
  margin-top: 1rem;
}

.Text_Absatz_wichtig {
  font-size: larger;
  color: var(--accent-color);

  padding-left: 1rem;
  padding-top: 0.2rem;
  margin-top: 1rem;
}

.Center {
  display: flex;
  justify-content: center;
  margin: 1rem;
}

.Space {
  margin-top: 3rem;
}

.textbox {
  height: fit-content;
}

.content {
  background-color: var(--background-color);
}

.Liste {
  margin: 1rem;
  text-decoration: dotted;
}

.frame_view {
  margin-left: 1rem;
  margin-top: 2rem;
}

.frame-position {
  display: flex;
  justify-content: space-between;
}

.border {
  padding-top: 0px;
}

.flex {
  display: flex;
  justify-content: center;
  align-items: center;
}

.frame-links {
  display: flexbox;
  justify-content: center;

  box-shadow: 2px 2px 4px black;

  margin-left: 1rem;
  margin-top: 1.5rem;
  background-color: var(--frame-background);
  font-family: "Segoe UI";

  height: auto;
  width: 45%;
  border-radius: 0.8rem;
  position: relative;
}

.frame-rechts {
  margin-right: 1rem;
  margin-top: 1.5rem;
  background-color: var(--frame-background);
  font-family: "Segoe UI";

  height: auto;
  width: 45%;
  border-radius: 0.8rem;
  position: relative;

  display: flexbox;
  justify-content: center;

  color: rgb(7, 70, 242);
  box-shadow: 2px 2px 4px black;
}

.frame-center {
  display: flex;
  justify-content: center;
}

.frame-mitte {
  margin-top: 1.5rem;
  background-color: var(--frame-background);
  font-family: "Segoe UI";

  height: auto;
  width: 80%;
  border-radius: 0.8rem;

  position: relative;
  margin-left: 1rem;

  display: flexbox;
  justify-content: center;

  box-shadow: 2px 2px 4px black;
}

.button {
  background-color: var(--button-background);
  color: var(--button-text-color);
  padding: 1rem;
  margin: 2rem;
  border-radius: 1.2rem;
  box-shadow: 2px 2px 4px gray;
}

.button:hover {
  background-color: rgb(241, 180, 66);
}

.Footer {
  background-color: var(--background-color);
  color: var(--menutext-color);
  height: fit-content;
}

.Vorstand {
  font-size: xx-small;
  padding: 1rem;

  display: grid;
  grid-template-columns: 6rem 20rem;
  grid-template-rows: 1.75rem 1.75rem;
  grid-auto-rows: 1.75rem;
}

.NEU {
  font-size: 1.5rem;
  font-weight: 700;
  padding: 3rem;
}

.Vorstellung {
  font-size: small;
  line-height: 20px;
  box-shadow: 2px 2px 4px white;
  margin-left: 10px;
}

.Bild_links {
  margin-left: 10px;
  margin-top: 10px;
  box-shadow: 2px 2px 4px white;
}

.Bild_Text {
  width: 250px;
  margin-inline: 220px;
  margin-top: -140px;

  padding: 1px;
}

.Bild_Text_2 {
  width: auto;
  margin-top: 15px;
  padding: 10px;
}

.baum {
  margin-top: 1rem;
  height: auto;
  display: flex;
  justify-content: space-around;

}

/*-------------------- SLIDES -------------------*/
.masonryholder {
  column-count: 4;
  column-gap: 2px;
  max-width: 1600px;
  margin: 0 auto;
}

.mansonryblock {
  display: inline-block;
  background: blue;
  padding: 10px;
  margin: 0 0 20px;
  width: 100%;
  box-sizing: border-box;
}

.mansonryblock img {
  width: 100%;
}

.Linkinsite {
  margin-left: 0px;
}

.img_slide {
  border: 2px solid white;
  width: 100%;
  margin: 0.5rem 1rem 0.5rem 1rem;
  box-shadow: 5px 5px rgb(95, 94, 94);
}

@media screen and (max-width: 768px) {
  .masonryholder {
    column-count: 1;
    margin: 3rem;
  }
}
@media screen and (min-width: 769px) {
  .masonryholder {
    column-count: 2;
  }
}

@media screen and (min-width: 1080px) {
  .masonryholder {
    column-count: 3;
  }
}

@media screen and (min-width: 1200px) {
  .masonryholder {
    column-count: 4;
  }
}
/*------------------END OF SLIDES ---------------------*/
