* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Open Sans", sans-serif;
}

html, body {
    height: 100%;
}

.main-container {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

body > .main-container {
    flex: 1;
}


li {
    list-style: none;
}

a {
    color: #4c4c4c;
    text-decoration: none;
}


/* Styles for Loading Screen */
#loading-screen {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  z-index: 9999;
}

#loading-screen img {
  width: 100px; /* Adjust size as needed */
  height: auto;
  animation: bounce 1s ease-in-out;
}

@keyframes bounce {
  0% { transform: scale(1); }
  50% { transform: scale(1.5); }
  100% { transform: scale(1); }
}




.welcome {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 5vh; /* Passt die Höhe der Div an */
    background-color: rgba(247, 82, 224, 0.3);


}

.download {
  border: #fff solid 1px;
  border-radius: 15px;
  padding-right: 8px;
  padding-left: 8px;
  padding-top: 2px;
  padding-bottom: 2px;
  color:white;
}

.navbar {
  min-height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 24px;
  position: relative;
}

.nav-menu {
  display: flex;
  justify-content: flex-end; /* Ändern Sie diese Zeile */
  align-items: center;
  gap: 60px;
  background-color: white;
  margin-top: 2.5vh;
  margin-left: auto; /* Fügen Sie diese Zeile hinzu */
}

.nav-branding {
  font-size: 2rem;
  color: #4c4c4c;
  padding: 0;
  font-weight: normal;
  margin: 5px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-branding img {
  height: 10vh;
  width: auto;
}

.nav-button {
  border: #F752E0 solid 2px;
  border-radius: 15px;
  padding-right: 8px;
  padding-left: 8px;
  color: #F752E0;
}

@media(max-width: 768px) {
  .nav-branding {
      font-size: 1rem;
      color: #4c4c4c;
      padding: 0;
      font-weight: normal;
  }

  .nav-branding img {
      height: 10vh;
      width: auto;
  }
}

.nav-link {
  position: relative;
  color: #F752E0;
}

.nav-link::before {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #F752E0;
  transition: 0.3s ease;
}

.nav-link:hover::before {
  width: 100%;
}

.hamburger {
  display: none;
  cursor: pointer;
  color: #4c4c4c;
  margin: 5px;
  position: relative;
  width: 30px;
  height: 24px;
}

.bar {
  width: 100%;
  height: 4px;
  background-color: #F752E0;
  border-radius: 2px;
  position: absolute;
  left: 0;
  transition: all 0.5s ease;
}

.bar:nth-child(1) {
  top: 0;
}

.bar:nth-child(2) {
  top: 10px;
}

.bar:nth-child(3) {
  top: 20px;
}

.hamburger.active .bar:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

@media(max-width: 768px) {
  .hamburger {
      display: block;
      margin-left: auto;

  }

  .nav-menu {
      position: absolute;
      left: -100%;
      top: 45px;
      gap: 0;
      flex-direction: column;
      width: 100%;
      text-align: center;
      transition: 0.3s;
      z-index: 1;
  }

  .nav-item {
      margin: 16px 0;
  }

  .nav-menu.active {
      left: 0;
  }

  main {
      margin-left: 0;
  }
}

.container {
    padding: 0 5%;
    margin: 5% 0;
    width: 90%;
    height: 65%;
    margin-left: 5%;
    margin-right: 5%;
    background-color: white;
    border-radius: 20px;
  
    box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.3);
}

.container h1 {
    margin-top: 5vh;
    padding: 5%;
    padding-bottom: 0;
    font-size: 40px;
    color: #F752E0;
}

.p-text {
    padding-left: 5%;
    padding-top: 20px;
    font-size: 22px;
}

.unter-p-text {
    padding-left: 5%;
    padding-top: 5px;
    font-size: 18px;
}

.unter-p-text-container {
    margin-top: 2vh;

}

.text-container,
.image-container {
    width: 50%;
    float: left;
}

.image-container {
    padding-left: 10%;
    padding-top: 5%;
}

.image-container img {
    width: 80%;
    height: auto;
}

.klick {
    background-color: #F752E0;
    color: white;
    margin: 5%;
    border-radius: 15px;
    padding: 15px;
}

.klick-container {
    padding-top: 10%;
}

.under-klick {
    padding: 5%;
    padding-top: 20px;
    font-size: 15px;
}

.space {
    padding: 5%;
}

@media(max-width: 768px) {
  .container {
    padding: 0 5%;
    margin: 5% 0;
    width: 90%;
    height: 50%;
    margin-left: 5%;
    margin-right: 5%;
    background-color: white;
    border-radius: 20px;
  
    box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.3);
}
  .container h1 {
    margin-top: 5vh;
    padding: 5%;
    padding-bottom: 0;
    font-size: 30px;
    color: #F752E0;
}
    .text-container {
        float: none;
        width: 100%;
    }

    .image-container {
        display: none;
    }

    .image-container img {
        width: 60%;
        height: auto;
    }
    .klick-container {
      padding-top: 10vh;
  }
}

footer {
    color: #4c4c4c;
    padding: 20px 0;
  
    position: relative;
    bottom: 0;
    width: 100%;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.footer-section {
    flex: 1;
    min-width: 200px;
    margin: 10px;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #F752E0;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #4c4c4c;
    text-decoration: none;
}

.footer-section ul li a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-section {
        text-align: center;
    }
}
