body {
  margin: 0;
  background-color: #ffffff;
}

.step-body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100%;
  background-color: #8800ff;
  flex: 1;
  flex-direction: column;
}

::selection {
  background-color: #7200d5;
  color: #ffffff;
}

fieldset {
  border-color: transparent;
}

.navbar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  /* background-image: linear-gradient(to bottom, #6800c3, #8800ff) */
  background-color: #8800ff;
  font-size: 1.5vw;
  padding: 20px;
}

#titan-one-regular {
  font-family: "Titan One", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.nav-links {
  display: flex;
  justify-content: space-around; /* Zentriere die Elemente horizontal */
  list-style: none;
  width: 50%;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: normal;
  transition: 0.3s ease;
}

.nav-links li a:hover {
  color: #ecd6ff;
}

#burger {
  display: none;
  cursor: pointer;
}

.sidebar {
  height: 100%;
  width: 50%;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: #111;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
  display: none;
}

.sidebar a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: #818181;
  display: block;
  transition: 0.3s;
}

.sidebar a:hover {
  color: #f1f1f1;
}

.sidebar .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

.sidebar div {
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 5px;
}

@media screen and (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: center;
  }
  .nav-links.active {
    display: none;
  }
  #burger {
    transition: margin-left 0.5s;
    display: block;
  }
}

.logo {
  color: white;
  text-decoration: none;
  font-size: 1.5em;
  font-weight: bold;
  height: 10px;
  width: auto;
}

.nav-logo {
  height: 50px; /* Adjust the height as needed */
  width: auto; /* Let the width adjust proportionally */
  justify-content: space-around;
  /* margin-right: 7vw; */
}

.openbtn {
  font-size: 20px;
  cursor: pointer;
  padding: 10px 15px;
  border: none;
  background-color: #8800ff;
  color: #fff;
}

/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
  .sidebar {
    padding-top: 15px;
  }
  .sidebar a {
    font-size: 18px;
  }
}

/* Slider */

* {
  box-sizing: border-box;
}

/* Slideshow container */
.slideshow-container {
  max-width: 40%;
  position: relative;
  margin: auto;
  margin-top: 6%;
  overflow: hidden; /* Verhindert das Überlaufen der Bilder aus dem Container */
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Full-width images */
.mySlides img {
  width: auto;
  height: 30vw;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: #8800ff;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* dots bei dem Bildslider */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active {
  background-color: #8800ff;
}
.dot:hover {
  background-color: #e0bcff;
}

/* Fading Animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

/* Main */

.main-container {
  text-align: center;
  margin-top: 10%; /* Abstand von oben */
  margin-bottom: 10%; /* Abstand unten */
}

.main-h1 {
  font-size: 6vw; /* Größe des Übertitels */
  color: #8800ff; /* Textfarbe des Übertitels */
  font-weight: 200;
}

.main-button {
  display: inline-block;
  padding: 10px 20px; /* Innenabstand des Buttons */
  /* background-color: #007bff; /* Hintergrundfarbe des Buttons */
  background: linear-gradient(to right, #8800ff, #6700c1);
  color: #fff; /* Textfarbe des Buttons */
  font-size: 4vw;
  text-decoration: none;
  border-radius: 20px; /* Runde Kanten */
  transition: background-color 0.3s ease; /* Sanfte Farbübergänge */
}

.main-button:hover {
  /* background-color: #0056b3; /* Farbänderung bei Hover */
  background: #2a2a2a;
}

/* Footer */

footer {
  background-color: #8800ff;
  font-family: "Titan One", sans-serif;
  color: #ffffff;
  text-align: center;
  padding: 20px;
  bottom: 0;
  width: 100%;
  font-weight: 100;
}

footer a {
  color: #ffffff;
  text-decoration: none;
}

footer a:hover {
  color: #dedede;
}

.content {
  text-align: center;
}

.step-card {
  align-items: center;
  background-color: #ffffff;
  border-radius: 20px;
  margin-left: 20px;
  margin-right: 20px;
  margin-bottom: 40px;
  margin-top: 30px;
  width: 80vw;
}

.step-h1 {
  font-size: 2em;
  color: #8800ff;
  margin-bottom: 20px;
  font-family: "Titan One", sans-serif;
  font-weight: 100;
  text-align: center;
}

.step-inner-img {
  max-width: 60%;
  align-self: center;
}

.progress-bar {
  max-width: 24%;
  height: auto;
}

@media screen and (max-width: 768px) {
  .step-card {
    width: 90vw;
  }
  .progress-bar {
    height: 60%;
    width: auto;
  }
}

.filler {
  min-height: 20%;
}
