body {
  background-color: black;
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
}

body {
  -ms-overflow-style: none; /* for Internet Explorer, Edge */
  scrollbar-width: none; /* for Firefox */
  overflow-y: scroll; 
}

body::-webkit-scrollbar {
  display: none; /* for Chrome, Safari, and Opera */
}

/*Desktop*/
@media only screen and (min-width: 1025px) {

  /* Navigationsleiste */
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: black; /* Hintergrundfarbe der Navigationsleiste anpassen */
    color: white; /* Textfarbe anpassen */
    height: 20px;
    padding: 15px 30px 15px;
    width: auto;
    left: 0;
    right: 0;
    box-shadow: 1px 1px 2px 0 rgba(238, 238, 238, 0.404),
      1px 4px 8px 0 rgba(238, 238, 238, 0.404);
  }

  /* Font Awesome Icon-Stil */
  .menu-button i,
  .home-button i {
    font-size: 35px;
    cursor: pointer;
    font-weight: bold; /* Fett */
  }

  /* Menü-Stil */
  .menu {
    background-color: rgb(22, 21, 21);
    color: white;
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 250px;
    padding: 0 0 10px 0;
    margin: 50px 0;
    text-align: center;
    opacity: 0;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    transform: translateX(100%);
    z-index: 99;
    overflow-y: auto;
  }

  .menu.active {
    background-color: rgb(22, 21, 21);
    opacity: 1; /* Sichtbar, wenn aktiv */
    transform: translateX(0); /* Sliden von rechts nach links */
  }

  .menu ul {
    margin-top: 20px;
    list-style-type: none;
    padding: 0;
    margin-left: 0;
    margin-right: 0;
    text-align: center;
    width: 250px;
  }

  .menu li {
    padding: 10px;
    text-align: center;
  }

  .menu a {
    font-size: 20px;
    text-decoration: none;
    color: white;
  }

  .menu a:hover {
    background-color: #555;
  }
  /* Navigationsleiste */
  
  /*Logo*/
  .MainLogo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 80px;
    margin-left: auto;
    margin-right: auto;
  }
  .MainLogo, img {
    height: auto;
    width: 800px;
  }
  /*Logo*/

  /*Footer*/
footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  padding-bottom: 5px;
  padding-top: 5px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 1px 1px 2px 0 rgba(238, 238, 238, 0.404),
      1px 4px 8px 0 rgba(238, 238, 238, 0.404);
}

.footerText {
  display: flex;
  flex-direction: column;
  text-align: center;
  margin-left: 50px;
}
.footerText a {
  color: white;
  text-decoration: none;
  font-size: 20px;
  margin: 5px;
}

.footerText a:hover {
  text-decoration: underline;
}
.footerLogo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 50px;
}

.footerLogo img {
  width: 300px;
}
/*Footer*/
}
/*Desktop*/

/*Tablet*/
@media only screen and (min-width: 601px) and (max-width: 1024px) {

  /* Navigationsleiste */
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: black; /* Hintergrundfarbe der Navigationsleiste anpassen */
    color: white; /* Textfarbe anpassen */
    height: 40px;
    padding: 0 30px 0;
    width: auto;
    left: 0;
    right: 0;
    box-shadow: 1px 1px 2px 0 rgba(238, 238, 238, 0.404),
      1px 4px 8px 0 rgba(238, 238, 238, 0.404);
  }

  /* Font Awesome Icon-Stil */
  .menu-button i,
  .home-button i {
    font-size: 30px;
    cursor: pointer;
    font-weight: bold; /* Fett */
  }

  /* Menü-Stil */
  .menu {
    background-color: rgb(22, 21, 21);
    color: white;
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 200px;
    padding: 0;
    margin: 40px 0;
    text-align: center;
    opacity: 0;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    transform: translateX(100%);
    z-index: 99;
    overflow-y: auto;
  }

  .menu.active {
    background-color: rgb(22, 21, 21);
    opacity: 1; /* Sichtbar, wenn aktiv */
    transform: translateX(0); /* Sliden von rechts nach links */
  }

  .menu ul {
    margin-top: 20px;
    list-style-type: none;
    padding: 0;
    margin-left: 0;
    margin-right: 0;
    text-align: center;
    width: 200px;
  }

  .menu li {
    padding: 10px;
    text-align: center;
  }

  .menu a {
    font-size: 18px;
    text-decoration: none;
    color: white;
  }

  .menu a:hover {
    background-color: #555;
  }
  /* Navigationsleiste */

   /*Logo*/
   .MainLogo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 80px;
    margin-left: auto;
    margin-right: auto;
  }
  .MainLogo, img {
    height: auto;
    width: 800px;
  }
  /*Logo*/

/*Footer*/
footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  padding-bottom: 5px;
  padding-top: 5px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 1px 1px 2px 0 rgba(238, 238, 238, 0.404),
      1px 4px 8px 0 rgba(238, 238, 238, 0.404);
}

.footerText {
  display: flex;
  flex-direction: column;
  text-align: center;
  margin-left: 50px;
}
.footerText a {
  color: white;
  text-decoration: none;
  font-size: 20px;
  margin: 5px;
}

.footerText a:hover {
  text-decoration: underline;
}
.footerLogo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 50px;
}

.footerLogo img {
  width: 300px;
}
/*Footer*/
}
/*Tablet*/

/*Handy*/
@media only screen and (max-width: 600px) {

  /* Navigationsleiste */
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: black; /* Hintergrundfarbe der Navigationsleiste anpassen */
    color: white; /* Textfarbe anpassen */
    height: 40px;
    padding: 0 30px 0;
    width: auto;
    left: 0;
    right: 0;
    box-shadow: 1px 1px 2px 0 rgba(238, 238, 238, 0.404),
      1px 4px 8px 0 rgba(238, 238, 238, 0.404);
  }

  /* Font Awesome Icon-Stil */
  .menu-button i,
  .home-button i {
    font-size: 30px;
    cursor: pointer;
    font-weight: bold; /* Fett */
  }

  /* Menü-Stil */
  .menu {
    background-color: rgb(22, 21, 21);
    color: white;
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 200px;
    padding: 0;
    margin: 40px 0;
    text-align: center;
    opacity: 0;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    transform: translateX(100%);
    z-index: 99;
    overflow-y: auto;
  }

  .menu.active {
    background-color: rgb(22, 21, 21);
    opacity: 1; /* Sichtbar, wenn aktiv */
    transform: translateX(0); /* Sliden von rechts nach links */
  }

  .menu ul {
    margin-top: 20px;
    list-style-type: none;
    padding: 0;
    margin-left: 0;
    margin-right: 0;
    text-align: center;
    width: 200px;
  }

  .menu li {
    padding: 10px;
    text-align: center;
  }

  .menu a {
    font-size: 18px;
    text-decoration: none;
    color: white;
  }

  .menu a:hover {
    background-color: #555;
  }
  /* Navigationsleiste */

   /*Logo*/
   .MainLogo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 70px;
    margin-left: auto;
    margin-right: auto;
  }
  .MainLogo, img {
    height: auto;
    width: 350px;
  }
  /*Logo*/

  /*Footer*/
footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  padding-bottom: 5px;
  padding-top: 5px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 1px 1px 2px 0 rgba(238, 238, 238, 0.404),
      1px 4px 8px 0 rgba(238, 238, 238, 0.404);
}

.footerText {
  display: flex;
  flex-direction: column;
  text-align: center;
  margin-left: 50px;
}
.footerText a {
  color: white;
  text-decoration: none;
  font-size: 15px;
  margin: 5px;
}

.footerText a:hover {
  text-decoration: underline;
}
.footerLogo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 50px;
}

.footerLogo img {
  width: 200px;
}
/*Footer*/
}
/*Handy*/
