/* Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,700;1,400&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100;0,300;0,400;0,500;0,600;1,300;1,400;1,500;1,600&family=Roboto:ital,wght@1,900&family=Source+Serif+Pro:ital,wght@0,400;0,600;1,400;1,600;1,900&family=Spline+Sans:wght@300;400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Nanum+Gothic:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Source+Serif+Pro:wght@200;300&display=swap");


/*Allgemeine Einstellungen*/

body {
  margin: 0px;
  font-family: "Roboto", sans-serif;
}

@media only screen and (min-width: 768px) {
  /* To Do: Nav-Bar Schriftgröße responsiv machen */
  /* Navigation-Bar*/

  .navigation {
    display: flex;
    justify-content: space-between;
    z-index: 5;
    padding: 5px;
    background-color: black;
    position: fixed;
    top: 0;
    width: 100%;
  }

  .navigationtwo {
    display: flex;
    justify-content: space-between;
    padding: 5px;
    background-color: rgb(0, 136, 136);
    position: fixed;
    z-index: 5;
    top: 0;
    width: 100%;
  }

  .navigationtwo > .right-side > div {
    margin-right: 20px;
    font-size: 0, 9em;
    text-transform: uppercase;
  }

  .right-side {
    font-weight: 700;
    display: flex;
    align-items: center;
    margin-right: 1%;
  }

  /*
     .middle {
         display: flex;
         align-items: center;
         width: 90px;
     }
*/
  .navigation > .right-side > div {
    margin-right: 20px;
    text-transform: uppercase;
  }

  .right-side > div > a {
    font-size: clamp(14px, 2vh, 21px);
  }

  .pic-wrapper {
    width: clamp(40px, 6%, 50px);
    padding: 5px;
  }

  .link-wrapper {
    height: 22px;
    border-bottom: 1px solid transparent;
    transition: border-bottom 0.5s;
  }

  .link-wrapper a {
    color: #c5c5c5;
    text-decoration: none;
    transition: color 0.5s;
  }

  .link-wrapper:hover {
    border-bottom: 1px solid white;
  }

  .link-wrapper a:hover {
    color: white;
  }

  .left-side {
    color: white;
    margin-left: 1%;
    display: flex;
    align-items: center;
  }

  /* Main-Body von index Wide*/


  #container2 {
    height: 85vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url(Images/water2.jpg);
    background-repeat: repeat;
    background-size: cover;
    background-attachment: inherit;
    background-position-y: bottom;
  }

  .bruh {
    text-align: center;
    color: white;
    font-size: larger;
    font-size: clamp(24px, 1.5vw, 35px);
    padding-top: 20vh;
    text-shadow: 10px 10px 20px rgb(8, 8, 8);
  }

  .bruhtext:hover {
    text-shadow: 1px 1px 100px rgb(8, 8, 8);
    transition-duration: 0.3s;
  }

/* Definiere die Animation für das Einblenden */
@keyframes fadeIn {
  from {
      opacity: 0;
  }
  to {
      opacity: 1;
  }
}

/* Standardzustand für #container2 */
.citetext{
  opacity: 0;
  animation: fadeIn 1s ease-in 1s forwards; /* Animation mit 1 Sekunde Verzögerung */
  background-image: url('Images/your-background-image.jpg');
  background-size: cover;
  background-repeat: no-repeat;
}

/* Standardzustand für #container2 */
.citeauthor{
  opacity: 0;
  animation: fadeIn 1s ease-in 1s forwards; /* Animation mit 1 Sekunde Verzögerung */
  background-image: url('Images/your-background-image.jpg');
  background-size: cover;
  background-repeat: no-repeat;
}




  #container3 {
    display: flex;
    justify-content: center;
    align-items: center;
    height: clamp(122px, 15vh, 15vh);
    background-color: black;
    background: url(Images/forest1.jpg);
    background-size: cover;
  }

  .Iconcontainer {
    margin-left: 6vw;
    margin-right: 6vw;
  }

  .iconmenu-contact {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 15vh;
    background-color: black;
    background: url(Images/forest1_small.jpg);
  }

  .Iconbar {
    display: flex;
    gap: 5vw;
    justify-content: center;
    align-items: center;
  }

  .icon {
    max-width: 6vw;
  }

  .icon:hover {
    opacity: 0.6;
    transition-duration: 0.2s;
    transform: scale(0.9);
  }

  .citetext {
    padding-top: 25vh;
    font-style: italic;
    color: white;
    font-size: clamp(23px, 2vw, 30px);
    margin-left: 10vw;
    margin-right: 10vw;
    text-shadow: 10px 10px 20px rgb(8, 8, 8);
  }

  .citeauthor {
    color: white;
    text-align: center;
    font-size: clamp(18px, 2vw, 30px);
    text-shadow: 10px 10px 20px rgb(8, 8, 8);
  }
}

@media only screen and (max-width: 768px) {
  /* Navigation-Bar*/

  .navigation {
    display: flex;
    justify-content: space-between;
    padding: 2px;
    background-color: black;
    position: fixed;
    z-index: 5;
    top: 0;
    width: 100%;
  }

  .navigationtwo {
    display: flex;
    justify-content: space-between;
    padding: 2px;
    background-color: rgb(0, 136, 136);
    position: fixed;
    z-index: 5;
    top: 0;
    width: 100%;
  }

  .right-side {
    font-weight: 700;
    display: flex;
    align-items: center;
    font-size: smaller;
  }

  .pic-wrapper {
    width: 2.5em;
    padding: 5px;
  }
  /*
        .middle {
            display: flex;
            align-items: center;
        }
*/

  .right-side > div > a {
    font-size: min(2vh, 15px);
  }

  .navigation > .right-side > div {
    margin-right: 20px;
    font-size: 0, 9em;
    text-transform: uppercase;
  }

  .navigationtwo > .right-side > div {
    margin-right: 20px;
    font-size: 0, 9em;
    text-transform: uppercase;
  }

  .link-wrapper {
    height: 22px;
    border-bottom: 1px solid transparent;
    transition: border-bottom 0.5s;
  }

  .link-wrapper a {
    color: #c5c5c5;
    text-decoration: none;
    transition: color 0.5s;
  }

  .link-wrapper:hover {
    border-bottom: 1px solid white;
  }

  .link-wrapper a:hover {
    color: white;
  }

  .left-side {
    color: white;
    margin-left: 20px;
    font-size: smaller;
  }

  /* Main-Body von Index*/

  #container2 {
    padding-top: 505px;
    padding-bottom: 40px;
    padding-right: 0;
    padding-left: 0;
    background-image: url(Images/water2_small.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: inherit;
    background-position-y: bottom;
  }

  .bruh {
    text-align: center;
    display: inline-block;
    /*
            left: 50%;
            transform: translate(-50%, -50%);*/
    color: white;

    padding-top: clamp(150px, 10vh, 180px);
    margin-left: 10vw;
    margin-right: 10vw;
    text-shadow: 10px 10px 20px rgb(8, 8, 8);
  }

  .bruhtext > h1 {
    font-size: clamp(20px, 10vw, 43px);
  }

  .bruhtext:hover {
    transform: scale(1.1) rotate(2deg);
    transition-duration: 0.2s;
  }

  .citetext {
    padding-top: clamp(150px, 11vh, 240px);
    font-style: italic;
    color: white;
    font-size: clamp(18px, 2vw, 30px);
    margin-left: 10vw;
    margin-right: 10vw;
    text-shadow: 10px 10px 20px rgb(8, 8, 8);
  }

  .citeauthor {
    color: white;
    text-align: center;
    font-size: clamp(18px, 2vw, 30px);
    text-shadow: 10px 10px 20px rgb(8, 8, 8);
  }

  #container3 {
    height: 46vh;
    padding-left: 9vw;
    padding-right: 9vw;
    padding-top: 10vh;
    background-color: black;
    background: url(Images/forest1_small.jpg);
    background-repeat: no-repeat;
    background-attachment: inherit;
  }

  .iconmenu-contact {
    padding: 50px;
    background-color: black;
    background: url(Images/forest1_small.jpg);
    background-repeat: no-repeat;
    background-attachment: inherit;
  }

  .Iconcontainer {
    margin-left: 30px;
    margin-right: 30px;
  }

  .Iconbar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 2em;
    padding: 2px;
    justify-items: center;
    align-content: end;
    width: 100%;
  }

  #news {
    align-self: center;
  }
  .icon {
    max-width: 100px;
  }

  .icon:hover {
    opacity: 0.6;
    transition-duration: 0.2s;
    transform: scale(0.9);
  }

  .contact-wrapper {
    display: flex;
    justify-content: center;
    padding: 5em;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
      Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  }

  .contact-infobox {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .contact-form > div {
    display: flex;
    justify-content: center;
  }
  .fast-contact-header {
    justify-self: center;
  }
}

/* Main-Body von About - Mobile*/

@media only screen and (max-width: 768px) {
  #containerab {
    width: 100%;
    margin: 0;
    padding-top: 100px;
    padding-bottom: 30px;
    background: white;
  }

  .aboutme {
    padding-top: 5vh;
    font-size: 14px;
    margin-right: 13vw;
    margin-left: 13vw;
  }

  #matheicon {
    display: none;
  }
  #geoicon {
    display: none;
  }

  #geo {
    font-size: 14px;
    padding-bottom: 15vh;
    margin-right: 13vw;
    margin-left: 13vw;
  }

  #mathe {
    font-size: 14px;
    margin-right: 13vw;
    margin-left: 13vw;
  }

  .content {
    text-align: center;
  }

  .text0 {
    font-family: Roboto;
    color: rgb(0, 0, 0);
  }

  .text0 > a:link {
    text-decoration: none;
    color: black;
  }
  .text0 > a:visited {
    text-decoration: none;
    color: black;
  }
  .text0 > a:hover {
    text-decoration: underline;
  }
  .text0 > a:active {
    text-decoration: underline;
    color: rgb(0, 114, 114);
  }

  .text {
    color: rgb(0, 0, 0);
  }
  .text2 {
    color: rgb(0, 0, 0);
    margin: 100px;
  }

  #hey {
    font-weight: 900;
    font-style: italic;
    color: rgb(0, 0, 0);
    font-size: 6vw;
  }
  #hey3 {
    font-style: italic;
    color: rgb(0, 0, 0);
    font-size: 6vw;
  }

  #heylauf {
    font-style: italic;
    color: rgb(0, 0, 0);
    font-size: 6vw;
    padding-top: 3vh;
  }

  #meinbild {
    display: contents;
    width: 50vw;
    padding-bottom: 0px;
    animation: fadeAndScale 1s cubic-bezier(0.39, -1.05, 0.58, 1.95);
    animation-delay: -0.3s;
    transform-origin: center bottom;
  }

  #meinbild > img {
    width: 40vmin;
  }

  /* Hey-Animation */

  @keyframes fadeAndScale {
    0% {
      opacity: 0;
      transform: scale3d(0.75, 0.75, 1);
    }

    70% {
      opacity: 0;
      transform: scale3d(0.75, 0.75, 1);
    }

    100% {
      opacity: 1;
      transform: scale3d(1, 1, 1);
    }
  }

  .hey {
    padding-top: 3.5vh;
    padding-bottom: 3.5vh;
    background-image: url(Images/heyback.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 5em;
    animation: fadeAndScale 1s cubic-bezier(0.39, -1.05, 0.58, 1.95);
    animation-delay: -0.5s;
    transform-origin: center bottom;
  }

  .journey {
    padding-bottom: 30px;
  }

  #laufbahn {
    box-sizing: border-box;
    text-align: center;
    min-height: fit-content;
    background-color: rgba(230, 230, 230, 0.705);
    padding-top: 0%;
    padding-bottom: 20%;
  }

  /* Beschreibung der Tabelle*/
  #lebenslauf {
    font-size: 13px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
      Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    border-collapse: collapse;
    width: 100%;
  }

  #lebenslauf tr > td > a:link {
    text-decoration: none;
    color: black;
  }
  #lebenslauf > tr > td > a:visited {
    text-decoration: none;
    color: rgb(0, 0, 0);
  }

  #lebenslauf > tr > td > a:hover {
    text-decoration: underline;
  }

  #lebenslauf > tr > td > a:active {
    text-decoration: underline;
    color: rgb(0, 114, 114);
  }

  #lebenslauf td,
  #lebenslauf th {
    border: 1px solid rgb(255, 255, 255);
    padding: 8px;
  }

  #lebenslauf tr:nth-child(even) {
    background-color: #ffffff;
  }

  #lebenslauf tr:hover {
    background-color: #ddd;
  }

  #lebenslauf th {
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: center;
    background-color: #006363;
    color: white;
  }

  .auflistung {
    width: 80vw;
    padding: 10vw;
  }

  #stationen {
    align-self: center;
    list-style-type: circle;
    line-height: 110%;
    text-align: left;
    padding-left: 20%;
    padding-right: 20%;

    color: rgb(0, 0, 0);
  }

  li {
    margin-bottom: 12px;
  }

  #iconcontainer-down {
    padding: 50px;
    background-color: black;
    background-repeat: no-repeat;
    background-attachment: inherit;
  }

  .border {
    margin-top: 8em;
    margin-bottom: 3em;
  }
  #border-wrapper > a {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .principles {
    padding-top: 20%;
    text-align: center;
  }

  .growthmindset {
    padding-top: 10vh;
  }

  .about-left-animation {
    animation: fadeinside 2s;
    transition: opacity 0.6s ease-out, transform 1.2s ease-out;
    transition-delay: 0.5s;
    will-change: opacity, visibility;
  }

  .about-left-animation2 {
    animation: fadeinside 2s;
    transition: opacity 0.6s ease-out, transform 1.2s ease-out;
    transition-delay: 0.5s;
    will-change: opacity, visibility;
  }

  .about-right-animation {
    animation: fadeinside2 2s;
    transition: opacity 0.6s ease-out, transform 1.2s ease-out;
    transition-delay: 0.5s;
    will-change: opacity, visibility;
  }

  @keyframes fadeinside {
    0% {
      opacity: 0;
      transform: translateX(-20vw);
      visibility: hidden;
    }

    100% {
      opacity: 1;
      transform: none;
      visibility: visible;
    }
  }

  @keyframes fadeinside2 {
    0% {
      opacity: 0;
      transform: translateX(+20vw);
    }

    100% {
      opacity: 1;
      transform: none;
    }
  }

  #principle {
    text-align: center;
    padding-bottom: 15vh;
  }

 
  #headtext {
    font-style: italic;
    color: rgb(0, 99, 102);
    font-size: 10vw;
    font-weight: 600;
  }

  #headtext2 {
    display: none;
  }

  #subtext {
    font-family: Roboto;
    color: rgb(0, 0, 0);
    font-size: 4vw;
    font-style: normal;
    padding: 8vw;
  }

  .principic {
    width: 100%;
    text-align: center;
  }

  .princpic > img {
    width: clamp(200px, 30%, 400px);
    padding-bottom: 3vh;
  }

  /* Footer */

  .foot {
    background-color: rgb(46, 46, 46);
    text-align: right;

    font-size: smaller;
    color: rgba(180, 180, 180, 0.678);
  }
}

/* Main-Body von About wide*/

@media only screen and (min-width: 768px) {
  #containerab {
    width: 100%;
    margin: 0;
    padding-top: 100px;
    padding-bottom: 30px;
    background: white;
  }

  .wrapme {
    display: flex;
    align-items: center;
    padding-left: 15vw;
    padding-right: 15vw;
    padding-bottom: 15vh;
  }

  .text0 {
    color: rgb(0, 0, 0);
    font-size: clamp(18px, 1.5vw, 30px);
    padding-left: 5vw;
    text-align: left;
  }

  .text0 > a:link {
    text-decoration: none;
    color: black;
  }
  .text0 > a:visited {
    text-decoration: none;
    color: black;
  }
  .text0 > a:hover {
    text-decoration: underline;
  }
  .text0 > a:active {
    text-decoration: underline;
    color: rgb(0, 114, 114);
  }

  .content {
    text-align: center;
  }
  .text {
    text-align: left;
    color: rgb(0, 0, 0);
    font-size: clamp(15px, 1.2vw, 25px);
    padding: 20px;
  }

  .text2 {
    color: rgb(0, 0, 0);
    margin: 100px;
  }

  #hey {
    font-weight: 900;
    font-style: italic;
    color: rgb(0, 0, 0);
    font-size: clamp(25px, 5vw, 60px);
    text-align: center;
  }


  #hey3 {
    font-style: italic;
    color: rgb(0, 0, 0);
    font-size: clamp(25px, 3vw, 45px);
    text-align: center;
  }

  #heylauf {
    font-style: italic;
    color: rgb(0, 0, 0);
    font-size: clamp(20px, 3vw, 45px);
    padding-top: 3vh;
  }

  #meinbild {
    display: contents;
    width: clamp(30px, 40vw, 300px);
    padding-bottom: 0px;
    animation: fadeAndScale 1s cubic-bezier(0.39, -1.05, 0.58, 1.95);
    animation-delay: -0.3s;
    transform-origin: center bottom;
  }

  #meinbild > img {
    width: clamp(30px, 30vw, 300px);
  }

  /* Hey-Animation */

  @keyframes fadeAndScale {
    0% {
      opacity: 0;
      transform: scale3d(0.75, 0.75, 1);
    }

    70% {
      opacity: 0;
      transform: scale3d(0.75, 0.75, 1);
    }

    100% {
      opacity: 1;
      transform: scale3d(1, 1, 1);
    }
  }

  .hey {
    padding-top: 3.5vw;
    padding-bottom: 3.5vw;
    background-image: url(Images/heyback.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 5em;
    animation: fadeAndScale 1s cubic-bezier(0.39, -1.05, 0.58, 1.95);
    animation-delay: -0.5s;
    transform-origin: center bottom;
  }

  .faecher {
    display: flex;
    justify-content: space-evenly;
    padding-bottom: 15vh;
  }

  #mathe {
    width: 30%;
    background: #ececec33;
    font-size: 18px;
  }

  #geo {
    width: 30%;
    background: #ececec33;
    font-size: 18px;
  }

  #matheicon > img {
    padding-top: 30px;
    width: 60px;
  }

  #geoicon > img {
    width: 60px;
    padding-top: 30px;
  }

  .journey {
    padding-bottom: 30px;
  }

  #laufbahn {
    box-sizing: border-box;
    min-height: fit-content;
    text-align: center;
    background-color: rgba(230, 230, 230, 0.705);
    padding-top: 0%;
    padding-bottom: 15vh;
  }

  /* Beschreibung der Tabelle*/
  #lebenslauf {
    font-size: clamp(13px, 1.8vh, 28px);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
      Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    border-collapse: collapse;
    width: 100%;
  }

  #lebenslauf tr > td > a:link {
    text-decoration: none;
    color: black;
  }
  #lebenslauf > tr > td > a:visited {
    text-decoration: none;
    color: rgb(0, 0, 0);
  }

  #lebenslauf > tr > td > a:hover {
    text-decoration: underline;
  }

  #lebenslauf > tr > td > a:active {
    text-decoration: underline;
    color: rgb(0, 114, 114);
  }

  #lebenslauf td,
  #lebenslauf th {
    border: 1px solid rgb(255, 255, 255);
    padding: clamp(8px, 2vh, 15px);
  }

  #lebenslauf tr:nth-child(even) {
    background-color: #ffffff;
  }

  #lebenslauf tr:hover {
    background-color: #ddd;
  }

  #lebenslauf th {
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: center;
    background-color: #006363;
    color: white;
  }

  .auflistung {
    width: 60vw;
    padding-left: 20vw;
    padding-right: 20vw;
    padding-top: 5vh;
  }

  #stationen {
    align-self: center;
    list-style-type: circle;
    line-height: 110%;
    text-align: left;
    padding-left: 20%;
    padding-right: 20%;

    color: rgb(0, 0, 0);
  }

  li {
    margin-bottom: 12px;
  }

  #iconcontainer-down {
    padding: 50px;
    background-color: black;
    background-repeat: no-repeat;
    background-attachment: inherit;
  }

  .border {
    margin-top: 8em;
    margin-bottom: 3em;
  }
  #border-wrapper > a {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .principles {
    padding-top: 15vh;
    padding-bottom: 5vh;
    text-align: center;
  }

  .growthmindset {
    padding-top: 10vh;
  }

  .agency {
    flex-direction: row-reverse;
  }

  .about-left-animation {
  
    animation: fadeinside 2s;
    transition: opacity 0.6s ease-out, transform 1.2s ease-out;
    transition-delay: 0.5s;
    will-change: opacity, visibility;
  }

  .about-left-animation2 {

    animation: fadeinside 2s;
    transition: opacity 0.6s ease-out, transform 1.2s ease-out;
    transition-delay: 0.5s;
    will-change: opacity, visibility;
  }


/* In dieser folgenden Animation liegt das Problem der Verschiebung */
  .about-right-animation {

    animation: fadeinside2 2s;
    transition: opacity 0.6s ease-out, transform 1.2s ease-out;
    transition-delay: 0.5s;
    will-change: opacity, visibility;
    overflow: hidden;
  }

  @keyframes fadeinside {
    0% {
      opacity: 0;
      transform: translateX(-20vw);
      visibility: hidden;
    }

    100% {
      opacity: 1;
      transform: none;
      visibility: visible;
    }
  }

  @keyframes fadeinside2 {
    0% {
      opacity: 0;
      transform: translateX(+300px);
      visibility: hidden;
    }

    100% {
      opacity: 1;
      transform: none;
      visibility: visible;
      }
  }

  #principle {
 
    display: flex;
    padding-bottom: 30vh;
    padding-left: 20vw;
    padding-right: 20vw;
    align-items: center;
  }

 
  #headtext2 {
    font-style: italic;
    color: rgb(0, 99, 102);
    font-size: clamp(15px, 4vw, 80px);
    font-weight: 600;
  }

  #headtext {
    display: none;
  }

  #subtext {
    font-family: Roboto;
    color: rgb(0, 0, 0);
    font-size: clamp(8px, 2vw, 35px);
    font-style: normal;
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .principic {
    text-align: center;
  }

  .princpic > img {
    width: 15vw;
    padding-bottom: 3vh;
  }

  /* Footer */

  .foot {
    background-color: rgb(46, 46, 46);
    text-align: right;

    font-size: smaller;
    color: rgba(180, 180, 180, 0.678);
  }
}

/* Main-Body von Blog*/

/*Allgemeine Einstellungen */


.blog-nav > .blogitem > a {
  color: rgb(65, 65, 65);
  background-color: #fafafabb;
}

.blog-nav > .blogitem > a:hover {
  color: rgb(223, 223, 223);
  transition: 0.2s;
}

.blog-nav > .blogitem > a.active {
  color: rgb(201, 201, 201);
}

.blog-nav{
  font-family: "Source Sans Pro";
}

.text3 {
  color: rgb(0, 0, 0);
}

.Eintragsumgebung {
  background-color: rgb(255, 255, 255);
}

.post {
  border-color: rgb(247, 247, 247);
  background-color: #f6f6f629;
  border-width: 4px;
  
}

.post > a {
  color: black;
  cursor: pointer;
  text-decoration: none;
}

.post > a:hover {
  color: rgba(190, 190, 190, 0.822);
  transition: 0.5s;
}

.post > a > small {
  color: rgb(155, 155, 155);
}

.container-blog-main.ress > div {
  background-color: rgb(173, 173, 173);
}

.container-blog-main {
  margin-left: 25px;
  margin-right: 25px;
}

/*Breakpoint 1*/

@media only screen and (max-width: 500px) {
  .container-blog {
    margin-top: 70px;
    margin-left: 25px;
    margin-right: 25px;
  }

  .container-blog-kopf {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 3em;
    margin-bottom: 8em;
  }

  .container-blog-kopf.rakete {
    padding-top: 40px;
    padding-bottom: 35px;
    align-items: center;
    margin-bottom: 0px;
  }

  .container-blog-kopf.allg {
    padding-top: 40px;
    padding-bottom: 35px;
    align-items: center;
    margin-bottom: 20px;
  }

  .container-blog-kopf.ress {
    padding-top: 40px;
    padding-bottom: 35px;
    align-items: center;
    margin-bottom: 20px;
  }

  .container-blog-kopf.allg > div > img {
    width: 80%;
  }

  .container-blog-kopf.rakete > div > img {
    width: 80%;
  }

  .container-blog-kopf.ress > div > img {
    width: 80%;
  }

  .container-blog-kopf > div {
    display: flex;
    justify-content: center;
  }

  .blog-nav {
    height: 100%;
    display: flex;
    flex-direction: column;
    column-gap: 0mm;
    text-align: center;
    justify-content: space-between;
    padding-bottom: 10vw;
    margin-right: 10vw;
    margin-left: 10vw;
    object-fit: contain;
    overflow: hidden;
  }

  .blog-nav > .blogitem > a {
    font-size: clamp(8px, 3vw, 12px);
    text-decoration: none;
    padding: 10px;
    padding-bottom: 0px;
    font-size: normal;
    padding: 8px;
    border-radius: 50px;
  }

  .blogitem {
    padding: 1vh;
  }

  .text3 {
    font-size: x-large;
  }

  .Eintragsumgebung {
    padding-bottom: 60px;
  }

  .post {
    padding: 15px;
    text-align: center;
    border-style: solid;
  }

  .post > p {
    text-align: left;
  }

  .post > a > h2 {
    font-size: clamp(12px, 100%, 24px);
  }

  .post-bild {
    object-fit: contain;
    width: 100%;
    height: 100%;
  }
}

/*Blog Main Haupt Breakpoint 2*/

@media only screen and (min-width: 500px) and (max-width: 600px) {
  .container-blog {
    margin-top: 70px;
  }

  .container-blog-kopf {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 3em;
    margin-bottom: 8em;
  }

  .container-blog-kopf.rakete {
    padding-top: 40px;
    padding-bottom: 35px;
    align-items: center;
    margin-bottom: 0px;
  }

  .container-blog-kopf.allg {
    padding-top: 40px;
    padding-bottom: 35px;
    align-items: center;
    margin-bottom: 20px;
  }

  .container-blog-kopf.ress {
    padding-top: 40px;
    padding-bottom: 35px;
    align-items: center;
    margin-bottom: 20px;
  }

  .container-blog-kopf.allg > div > img {
    width: 50vw;
  }

  .container-blog-kopf.rakete > div > img {
    width: 80%;
    margin-left: 25px;
    margin-right: 25px;
  }

  .container-blog-kopf.ress > div > img {
    width: 80%;
  }

  .container-blog-kopf > div {
    display: flex;
    justify-content: center;
  }

  .blog-nav {
    height: 100%;
    display: flex;
    flex-direction: column;
    column-gap: 0mm;
    text-align: center;
    justify-content: space-between;
    padding-bottom: 10vw;
    margin-right: 10vw;
    margin-left: 10vw;
    object-fit: contain;
    overflow: hidden;
  }

  .blog-nav > .blogitem > a {
    font-size: clamp(8px, 3vw, 12px);
    text-decoration: none;
    padding: 10px;
    padding-bottom: 0px;
    font-size: normal;
    padding: 8px;
    border-radius: 50px;
  }

  .blogitem {
    padding: 1vh;
  }

  .text3 {
    font-size: x-large;
  }

  .Eintragsumgebung {
    padding-bottom: 60px;
  }

  .post {
    margin-left: 8vw;
    margin-right: 8vw;
    padding: 15px;
    text-align: center;
    border-style: solid;
  }

  .post > p {
    text-align: left;
  }

  .post > a > h2 {
    font-size: clamp(12px, 100%, 24px);
  }

  .post-bild {
    object-fit: contain;
    width: 100%;
    height: 100%;
  }
}

@media only screen and (min-width: 600px) and (max-width: 1200px) {
  .container-blog {
    margin-top: 70px;
  }

  .container-blog-kopf {
    display: flex;
    align-items: center;

    justify-content: center;
    padding-top: 3em;
    margin-bottom: 8em;
  }

  .container-blog-kopf.rakete {
    padding-top: 40px;
    padding-bottom: 35px;
    align-items: center;
    margin-bottom: 0px;
  }

  .container-blog-kopf.allg {
    padding-top: 40px;
    padding-bottom: 35px;
    align-items: center;
    margin-bottom: 20px;
  }

  .container-blog-kopf.ress {
    padding-top: 40px;
    padding-bottom: 35px;
    align-items: center;
    margin-bottom: 20px;
  }

  .container-blog-kopf.allg > div > img {
    width: 50vw;
    max-width: 400px;
  }

  .container-blog-kopf.rakete > div > img {
    width: 80%;
    max-width: 700px;
  }

  .container-blog-kopf.ress > div > img {
    width: 80%;
  }

  .container-blog-kopf > div {
    display: flex;
    justify-content: center;
  }

  .blog-nav {
    height: 100%;
    display: flex;
    flex-direction: row;
    column-gap: 0mm;
    text-align: center;
    justify-content: space-around;
    padding-bottom: 3vh;
    margin-right: 10vw;
    margin-left: 10vw;
    object-fit: contain;
    overflow: hidden;
  }

  .blog-nav > .blogitem > a {
    font-size: clamp(8px, 3vw, 14px);
    text-decoration: none;
    padding: 10px;
    padding-bottom: 0px;
    font-size: normal;
    padding: 8px;
    border-radius: 50px;
  }

  .blogitem {
    padding: 1vh;
  }

  .text3 {
    font-size: x-large;
  }

  .Eintragsumgebung {
    padding-bottom: 60px;
  }

  .post {
    padding: 15px;
    text-align: center;
    border-style: solid;
    margin: 10px;
  }

  .post > p {
    text-align: left;
  }

  .post > a > h2 {
    font-size: clamp(12px, 100%, 24px);
  }

  .post-bild {
    object-fit: contain;
    width: 100%;
    height: 100%;
  }

  .container-blog-main.ress {
    size: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 1em;
  }

  .container-blog-main {
    padding-right: 15vw;
    padding-left: 15vw;
    margin-top: 8vh;
    display: grid;
    grid-template-columns: 35vw 35vw;
    justify-content: space-around;
    margin-bottom: 120px;
  }
}

@media only screen and (min-width: 1200px) {
  .container-blog {
   padding-top: 70px;
  }

  .postbody-allgemein{
    padding-bottom: 11vh;
  }

  .container-blog-kopf {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 3em;
    margin-bottom: 8em;
  }

  .container-blog-kopf.rakete {
    padding-top: 40px;
    padding-bottom: 35px;
    align-items: center;
    margin-bottom: 0px;
  }

  .container-blog-kopf.allg {
    padding-top: 40px;
    padding-bottom: 35px;
    align-items: center;
    margin-bottom: 20px;
  }

  .container-blog-kopf.ress {
    padding-top: 40px;
    padding-bottom: 35px;
    align-items: center;
    margin-bottom: 20px;
  }

  .container-blog-kopf.allg > div > img {
    width: 50vw;
    max-width: 450px;
  }

  .container-blog-kopf.rakete > div > img {
    width: 50vw;
    max-width: 700px;
  }

  .container-blog-kopf > div {
    display: flex;
    justify-content: center;
  }

  .container-blog-main {
    margin-bottom: 80px;
    margin-top: 60px;
  }

  .blog-nav {
    height: 100%;
    display: flex;
    flex-direction: row;
    column-gap: 0mm;
    text-align: center;
    justify-content: space-around;
    padding-bottom: 3vh;
    margin-right: 13vw;
    margin-left: 13vw;
    object-fit: contain;
    overflow: hidden;
  }

  .blog-nav > .blogitem > a {
    font-size: clamp(8px, 3vw, 17px);
    text-decoration: none;
    padding: 10px;
    padding-bottom: 0px;
    font-size: normal;
    padding: 8px;
    border-radius: 50px;
  }

  .blogitem {
    padding: 1vh;
  }

  .text3 {
    font-size: x-large;
  }

  .Eintragsumgebung {
    max-width: 550px;
  }

  .post {
    padding: 15px;
    text-align: center;
    border-style: solid;
    margin: 1vw;
  }

  .post > p {
    text-align: left;
  }

  .post > a > h2 {
    font-size: clamp(12px, 120%, 28px);
  }

  .post > a > small {
    font-size: clamp(12px, 50%, 13px);
  }

  .post-bild {
    object-fit: contain;
    width: 100%;
    height: 100%;
  }

  .postbody-allgemein{
    width: 70%;
    margin: 0 auto;
  }

  .container-blog-main.ress {
    size: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 1em;
  }

  .container-blog-main {
/*     padding-right: 12.5vw;
    padding-left: 12.5vw; */
    display: grid;
    grid-template-columns: 20vw 20vw 20vw;
    justify-content: center;
  
    justify-items: center;

  }
}

/* Blogpost */



.container-blog-kopf-post{
  background-color: #f8f8f8c9;
}

.blog-header-allg-post{
  display: flex;
  justify-content: center;
  width: 100%;
}

.blog-header-rakete-post{
  display: flex;
  justify-content: center;
  width: 100%;
}

.bildumgebung{
  display: block;
  margin: auto;
  width: 100%
}

.post_bild_description{

  color: #575757;
  font-family: "Source Serif Pro";
  font-weight: 300;
  font-style: italic;
}

.post-header{
  position: relative;
}

.post-header > h2 {
  font-weight: 900;
  font-family: "Spline Sans";
}

.post-header > p {
  font-family: "Nanum Gothic";
}

.post_header > small {
  color: rgb(180, 180, 180);
  font-family: "Raleway";
}

.post_text {
  position: relative;
  text-align: left;
  font-family:"Source Serif Pro";
  font-weight: 400;
}

.blogback {
  text-align: center;
}


.blogback > a {
  background-color: rgb(236, 236, 236);
  border-radius: 50px;
  border-style: solid;
  border-color: rgb(196, 196, 196);
  padding: 8px;
  text-decoration: none;
  color: rgb(70, 70, 70);
}

.blogback > a:hover {
  background-color: rgb(201, 201, 201);
  text-decoration: none;
  color: rgb(27, 27, 27);
}

.postmiddle{
  text-align: center;
}

/* Blogpost Mobile */
@media only screen and (max-width: 768px) {

    .postbody {
      width: 100%;
    }
    
  .blog-header-allg-post > img {
    width:clamp(200px,90%,300px);
    margin: 50px;
  }

  .blog-header-rakete-post > img {
    width:clamp(200px,90%,400px);
    margin: 50px;
  }

  .post_bild_description{
    padding-right: 14px;
    padding-left: 14px;
    font-size: 15px;
  }


  .giveblogspace {
    margin-top: 5vw;
  }



  .post_header {
    padding-left: 14px;
    padding-right: 14px;
    padding-top: clamp(30px,4vh,50px);
    padding-bottom: 40px;
  }


  .post_header > h2 {
    font-size: 30px;
  }


  .post-header > p {
    font-size: 18px;
  }

  .post_text {
    padding: 14px;
    padding-top: 40px;
    font-size: 18px;
  }

  .blogback {
    padding-bottom: 40px;
    font-size: 12px;
  }



}

/* Blogpost wide */
@media only screen and (min-width: 768px) {

  .postbody {
    width: 50%;
    margin: 0 auto;
    min-width: 600px;
    max-width: 900px;
  }
  
.blog-header-allg-post > img {
  width:clamp(200px,90%,300px);
  margin: 50px;
}

.blog-header-rakete-post > img {
  width:clamp(200px,90%,400px);
  margin: 50px;
}

.post_bild_description{
  padding-right: 14px;
  padding-left: 14px;
  font-size: 16px;
}


.giveblogspace {
  margin-top: 5vw;
}



.post_header {
  padding-left: 14px;
  padding-right: 14px;
  padding-top: clamp(30px,4vh,50px);
  padding-bottom: 40px;
  display: inline-block;
}


.post_header > h2 {
  font-size: 42px;
}


.post-header > p {
  font-size: 20px;
}

.post_text {
  padding: 14px;
  padding-top: 40px;
  font-size: 20px;
}

.blogback {
  padding-top: 70px;
  padding-bottom: 100px;
  font-size: 12px;
}


  
}


/* News-Page Mobile */

/*Dropdown-Menü für Klassen einfügen*/

@media only screen and (max-width: 768px) {
  .news {
    padding-top: 2.5em;
  }

  .newsicon > img {
    width: 30vw;
  }

  .headcontainer {
    padding-bottom: 5vh;
    background-color: rgb(255, 255, 255);
  }

  .newsicon {
    display: flex;
    padding-top: 70px;
    justify-content: center;
  }

  .headerboard {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
      Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    text-align: center;
    font-size: 5vw;
  }

  .ballgemein {
    padding-top: 20px;
    padding-bottom: 40px;
    background-color: rgb(243, 243, 243);
  }

  .uebergang {
    height: 15vh;
    background: url(Images/water2.jpg);
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
  }

  .spezifisch {
    padding-top: 20px;
    padding-bottom: 200px;
    background-color: rgb(243, 243, 243);
  }

  .allgemeinheader {
    margin-bottom: 40px;
    padding-left: 20px;
    color: rgb(82, 82, 82);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
      Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    font-style: italic;
  }

  .klasseheader {
    font-size: clamp(15px, 2em, 35px);
    padding: 10px;
    cursor: pointer;
    background-image: url(Images/y1.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 6em;
    padding-bottom: 20px;
  }

  .boarditems {
    border-radius: 3px 15px 5px 30px;
    display: flex;
    flex-direction: column;
    width: 82vw;
    margin-left: 5vw;
    margin-top: 15px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    background-color: #ffffff;
    padding: 4vw;
    font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
      "Lucida Sans", Arial, sans-serif;
    text-align: center;
  }

  .item {
    font-size: clamp(10px, 4vw, 17px);
    padding-bottom: 18px;
  }

  .Klasse {
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: center;
    font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
      "Lucida Sans", Arial, sans-serif;
  }
}

/* News-Page wide-Browser */

@media only screen and (min-width: 768px) {
  .news {
    margin-top: 150px;
  }

  .newsicon > img {
    width: clamp(170px, 20vw, 250px);
  }

  .headcontainer {
    padding-bottom: 5vh;
    background-color: rgb(255, 255, 255);
  }

  .newsicon {
    display: flex;
    padding-top: 70px;
    justify-content: center;
  }

  .headerboard {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
      Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    text-align: center;
    font-size: 3vh;
  }

  .ballgemein {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 40px;
    background-color: rgb(243, 243, 243);
  }

  .allgemeinbox {
    display: grid;
    grid-template-columns: 30vw 30vw;
    grid-row: auto auto;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    justify-content: space-evenly;
  }

  .uebergang {
    height: 15vh;
    background: url(Images/water2.jpg);
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
  }

  .spezifisch {
    padding-top: 20px;
    padding-bottom: 200px;
    background-color: rgb(243, 243, 243);
    padding-left: 15vw;
    padding-right: 15vw;
  }

  .allgemeinheader {
    margin-bottom: 40px;
    padding-left: 10vw;
    color: rgb(82, 82, 82);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
      Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    font-style: italic;
  }

  .klasseheader {
    font-size: clamp(15px, 2em, 35px);
    padding: 10px;
    cursor: pointer;
    background-image: url(Images/y1.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 6em;
    padding-bottom: 20px;
  }

  .boarditems {
    border-radius: 3px 15px 5px 30px;
    display: flex;
    flex-direction: column;
    margin-top: 15px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    background-color: #ffffff;
    padding: 2vw;
    font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
      "Lucida Sans", Arial, sans-serif;
    text-align: center;
  }

  .item {
    font-size: clamp(10px, 2vw, 22px);
    padding: 18px;
  }

  .Klasse {
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: center;
    font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
      "Lucida Sans", Arial, sans-serif;
  }

  .klagrid {
    display: grid;
    grid-template-columns: auto auto;
    grid-row: auto auto;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    justify-content: center;
  }
}

/* Contact-Page */

#status.success {
  background-color: rgba(0, 95, 24, 0.534);
  animation: status 4s ease forwards;
}

#status.error {
  background-color: rgba(172, 29, 29, 0.534);
  color: white;
  animation: status 4s ease forwards;
}

@keyframes status {
  0% {
    opacity: 1;
    pointer-events: all;
  }

  90% {
    opacity: 1;
    pointer-events: all;
  }
  100% {
    opacity: 0;
    pointer-events: none;
  }
}

@media only screen and (max-width: 768px) {
  .contact-wrapper {
    display: contents;
    height: 80vh;
  }

  #contacticon {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .site-heading {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
      Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    font-size: clamp(30px, 8vw, 40px);
  }

  #contacticon > img {
    width: 40%;
    max-width: 400px;
  }

  .contact-heading {
    display: flex;
    flex-direction: column;
    padding-bottom: 10vh;
    padding-top: 10vh;
    padding-left: 10vw;
    padding-right: 10vw;
    align-items: center;
  }

  .contactheader {
    display: flex;
    padding-top: 5vw;
    flex-direction: column;
    align-items: center;
    max-width: 400px;
  }

  .contact-subheader {
    text-align: center;
    font-size: clamp(16px, 4vw, 20px);
  }

  .allcontact {
    padding-left: 20vw;
    padding-right: 20vw;
    padding-top: 5vh;
    padding-bottom: 5vh;
    background-color: aliceblue;
  }

  .sticky > img {
    display: none;
  }

  .contact-infobox {
    display: flex;
    flex-direction: column;
  }

  .contact-infobox > h3 {
    margin: 1vh;
    font-size: 15px;
  }

  .anonbox {
    display: flex;
    flex-direction: row;
    padding-left: 5vw;
    padding-right: 5vw;
    padding-top: 7vh;
    align-items: center;
  }

  #emoji > img {
    width: 80%;
  }

  .anontext {
    padding-left: 5vw;
    display: flex;
    flex-direction: column;
  }

  #anonheader > h2 {
    margin: 0;
  }

  .anonsubbox {
    margin: 0;
    padding-top: 3vh;
    padding-bottom: 70px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .anoncontainer {
    width: 90%;
    margin: 0 auto;
    padding: 20px;
    background-color: white;
    max-width: 500px;
  }

  .form-group {
    width: 100%;
    margin-top: 1vh;
  }

  .form-group input,
  .form-group textarea {
    width: 100%;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: none;
  }

  .textarea {
    resize: vertical;
  }

  button {
    width: 100%;
    border: none;
    outline: none;
    padding: 10px;
    border-radius: 8px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
      Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    color: rgb(33, 146, 245);
    text-align: center;
    cursor: pointer;
    margin-top: 10px;
    transition: 0.3s ease background-color;
  }

  button[type="submit"]:hover {
    background-color: rgba(69, 121, 167, 0.534);
  }

  #status {
    width: 50%;
    max-width: 500px;
    text-align: center;
    padding: 10px;
    margin: 0 auto;
    margin-top: 10px;
    border-radius: 8px;
  }

  .allcontact2 {
    padding-top: 50px;
    padding-bottom: 20px;
  }

  .allcontact3 {
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: rgba(225, 229, 241, 0.616);
  }

  .Infostalk {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
  }

  .Infosplenar {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-evenly;
    align-items: center;
  }

  .sprechtext {
    width: 60vw;
  }

  .contact3icon > img {
    width: 80%;
  }

  .contact3icon {
    width: 20%;
  }

  .contact3header {
    font-style: bold;
  }

  .freumich {
    padding: 50px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
      Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    color: white;
  }
}

  .Impressum {
    padding-top: 8em;
    padding-bottom: 2em;
    padding-left: 0.5em;
    padding-right: 0.5em;
    font-size: x-small;
    background-color: #000000;
  color: white;
}

/* Kontakt wide Browser */

@media only screen and (min-width: 768px) {
  #status.success {
    background-color: rgba(0, 95, 24, 0.534);
    animation: status 4s ease forwards;
  }

  #status.error {
    background-color: rgba(172, 29, 29, 0.534);
    color: white;
    animation: status 4s ease forwards;
  }

  @keyframes status {
    0% {
      opacity: 1;
      pointer-events: all;
    }

    90% {
      opacity: 1;
      pointer-events: all;
    }
    100% {
      opacity: 0;
      pointer-events: none;
    }
  }

  .contact-wrapper {
    display: contents;
    height: 80vh;
  }

  #contacticon {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .site-heading {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
      Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    font-size: clamp(30px, 3vw, 50px);
  }

  #contacticon > img {
    width: clamp(160px, 100%, 230px);
  }

  .contact-heading {
    display: flex;
    flex-direction: column;
    padding-bottom: 6vh;
    padding-top: 14vh;
    padding-left: 10vw;
    padding-right: 10vw;
    align-items: center;
    height: fit-content;
  }

  .contactheader {
    display: flex;
    padding-top: 2vh;
    flex-direction: column;
    align-items: center;
    width: clamp(600px, 10vw, 700px);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
      Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  }

  .contact-subheader {
    text-align: center;
    font-size: clamp(15px, 1.3vw, 20px);
  }

  .allcontact {
    padding-left: 20vw;
    padding-right: 20vw;
    padding-top: 5vh;
    padding-bottom: 5vh;
    background-color: aliceblue;
  }

  .sticky {
    position: relative;
    padding-left: 10vw;
    bottom: 80px;
    height: 0px;
    z-index: 1;
  }

  .sticky > img {
    width: clamp(150px, 30vw, 320px);
    z-index: 1;
    margin-left: 40vw;
  }

  .sticky > img:hover {
    transform: scale(1.1);
    transition-duration: 0.2s;
  }

  .contact-infobox {
    padding-left: 20vw;
    display: flex;
    flex-direction: column;
    width: 20vw;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
      Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  }

  .contact-infobox > h3 {
    margin: 1vh;
    font-size: clamp(15px, 1.3vw, 18px);
  }

  .anonbox {
    display: flex;
    flex-direction: row;
    padding-left: 5vw;
    padding-right: 5vw;
    padding-top: 7vh;
    align-items: center;
    justify-content: center;
  }

  #emoji > img {
    width: 80%;
    max-width: 160px;
  }

  .anontext {
    padding-left: 1vw;
    display: flex;
    flex-direction: column;
  }

  #anonheader > h2 {
    margin: 0;
    font-size: clamp(25px, 1.3vw, 60px);
  }

  .anonsubbox {
    margin: 0;
    padding-top: 3vh;
    padding-bottom: 70px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .form-group {
    width: 100%;
    margin-top: 1vh;
  }

  #my-form {
    width: clamp(500px, 50vw, 1000px);
  }

  .form-group input,
  .form-group textarea {
    width: 100%;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: none;
    font-size: 18px;
  }

  .textarea {
    resize: none;
  }

  button {
    width: 100%;
    border: none;
    outline: none;
    padding: 10px;
    border-radius: 8px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
      Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    color: rgb(33, 146, 245);
    text-align: center;
    cursor: pointer;
    margin-top: 10px;
    transition: 0.3s ease background-color;
  }

  button[type="submit"]:hover {
    background-color: rgba(69, 121, 167, 0.534);
  }

  #status {
    width: 50%;
    max-width: 500px;
    text-align: center;
    padding: 10px;
    margin: 0 auto;
    margin-top: 10px;
    border-radius: 8px;
  }

  .allcontact2 {
    padding-bottom: 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
      Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  }

  .allcontact3 {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
      Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    padding-top: 30px;
    padding-left: 10vw;
    padding-right: 10vw;
    padding-bottom: 30px;
    background-color: rgba(225, 229, 241, 0.616);
  }

  .Infostalk {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .Infosplenar {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .sprechtext {
    width: 20vw;
  }

  .contact3icon > img {
    width: 80%;
    max-width: 130px;
  }

  .contact3icon {
    width: 30%;
    padding: 1vw;
  }

  .contact3header {
    font-style: bold;
  }

  .freumich {
    padding: 50px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
      Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    color: white;
  }
}


/* Kalender-Subdomain */

.name { text-align: center;
  font-family: "Source Sans Pro";
  font-size: xx-large;
  font-weight: 900;
  padding-top: 150px;
}

.calender-wrapper{
  text-align: center;
  padding: 80px;;
}

/*
#Login-Message{
    padding-bottom: 90px;
    font-size: 9px;
    text-align: center;
    color: white;
}

#Login-Maske{
    text-align: center;
    margin: auto;
    width: 60%;
    border-radius: 5px;
    background-color: #f2f2f2;
    padding: 20px;
}

  input[type=text], select {
    width: 50%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
  }
  
  input[type=submit] {
    width: 40%;
    background-color: #4CAF50;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }

  input[type=submit]:hover {
    background-color: #45a049;}}
*/
