body {
    background-color: black;
    color: white;
    font-family: 'Monaco', sans-serif;
  }
  
  .login-container {
    max-width: 300px;
    margin: auto;
    text-align: center;
    padding-top: 100px;
  }

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left:0; 
  width: 100%;
  background-color: black;
  display: flex;
  justify-content: start;
  padding: 1rem;
  z-index: 1000; /* Damit es über anderen Inhalten bleibt */
  transition: top 0.5s; /* Übergangseffekt beim Ein- und Ausblenden */
}

.hamburger {
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.hamburger div {
  width: 35px;
  height: 4px;
  background-color: white;
  margin: 4px 0;
  border-radius: 2px;
}

@media (min-width: 769px) {
  .navbar {
      display: none;
  }
}

/* SIDEBAR */
.sidebar {
  width: 230px;
  position: fixed;
  top: 0;
  bottom: 0;
  background-color: black; /* Dunkelgrauer Hintergrund */
  padding: 20px;
  transition: left 0.5s; /* Übergangseffekt beim Ein- und Ausblenden */
  z-index: 999; /* Damit es unter der Navbar bleibt */
  overflow-y: auto;
}

.sidebar.active {
  left: 0; /* Zeigt die Sidebar an */
}

.sidebar .close-btn {
  display: none;
  font-size: 1.5em;
  cursor: pointer;
  color:white;
}

.sidebar h2 {
  display: flex;
  align-items: center;
}

.sidebar.active .close-btn {
  display: block;
  margin-right: 10px;
}

.sidebar a {
  color: white;
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
}

.sidebar a:hover {
  background-color: white;
  color: black  ;
}

@media (max-width: 769px) {
  .sidebar {
      display: block; /* Sidebar wird angezeigt */
      left: -330px; /* Versteckt die Sidebar zunächst */
  }
}
  
  .main-content {
    margin-left: 260px; /* So viel wie die Sidebar breit ist plus padding */
    padding: 20px;
  }

  @media(max-width:769px){ .main-content{
    width: 100%;
    margin-left: 0px;
   }}
  
  .blog-post {
    margin-bottom: 40px;
  }
  
  video {
    max-width: 100%;
  }
  
  .center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
  }

  .blog-section {
    display: flex; /* Nutzt Flexbox für das Layout */
    flex-direction: column; /* Ordnet Elemente vertikal an */
    align-items: center; /* Zentriert Elemente horizontal */
    text-align: center; /* Stellt Text linksbündig ein */
    max-width: auto; /* Maximale Breite der Blog-Section */
    margin: auto; /* Zentriert die Section horizontal */
}

.image-inline {
    width: 100%; /* Breite des Figure-Elements */
    text-align: center; /* Zentriert Bild und Bildunterschrift */
    margin: 20px 0; /* Abstand oben und unten */
}

.blog-image {
    max-width: 600px; /* Bild passt sich der Breite des Figure-Elements an */
    height: auto; /* Behält das Seitenverhältnis des Bildes bei */
    transition: transform 0.9s ease ease-in-out;
}
@media(min-width: 769px){.blog-image:hover{
  transform: scale(1.5);
}}


.figcaption {
    font-size: 0.8em; /* Schriftgröße für Bildunterschrift */
}

.hundi-section {
    display: flex; /* Nutzt Flexbox für das Layout */
    flex-direction: column; /* Ordnet Elemente vertikal an */
    align-items: center; /* Zentriert Elemente horizontal */
    text-align: center; /* Stellt Text linksbündig ein */
    max-width: auto; /* Maximale Breite der Blog-Section */
    margin: auto; /* Zentriert die Section horizontal */
    border-color: white;
    border-style: solid;
    border-width: 5px;
    
}

.img__wrap {
  position: relative;
  max-width: 600px; /* Bild passt sich der Breite des Figure-Elements an */
  height: auto; /* Behält das Seitenverhältnis des Bildes bei */
}

.img__description {
  position: relative;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(29, 106, 154, 0.72);
  color: #fff;
  visibility: hidden;
  opacity: 0;

  /* transition effect. not necessary */
  transition: opacity .2s, visibility .2s;
}

.img__wrap:hover .img__description {
  visibility: visible;
  opacity: 1;
}