.back-button-container {
	display: flex;
	justify-content: center;
	margin-top: 0px;
	margin-left: 0px;
  margin-bottom: 15px;
}

.back-button {
	padding: 5px 20rem;
  animation: scale-in-center 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) both 0.5s;
}

main {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  /* Abstand zwischen den Containern */
}

.information-container1,
.information-container2,
.information-container3 {
  border: 1px solid white;
  padding: 20px;
  width: 50%;
  transition: 0.5s;
  line-height: 25px;
}

/* Container 1 und 3 links */
.information-container1,
.information-container3 {
  align-self: flex-start;
  border-radius: 0 15px 15px 0;
  padding-left: 40px;
  margin-left: -2px;
}

/* Container 2 rechts */
.information-container2 {
  align-self: flex-end;
  border-radius: 15px 0 0 15px;
  margin-right: -2px;
}

.information-container1 {
  animation: slide-in-left 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) both 2s;
  margin-top: -30px !important;
}

.information-container2 {
  animation: slide-in-right 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) both 2.5s
}

.information-container3 {
  animation: slide-in-left 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) both 3s
}

.information-container1-title,
.information-container2-title,
.information-container3-title {
  margin-top: -22px;
}

.information-container1-title h3,
.information-container2-title h3,
.information-container3-title h3 {
  text-decoration: underline;
  text-decoration-style: dotted;
}

.number1,
.number2,
.number3 {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  width: 40px;
  position: relative;
  background-color: white;
  border-radius: 100px;
  border: 3px dotted black;
  margin-top: -40px;
}

.number1 {
  left: 100%;
  animation: rotate-in-center 0.6s cubic-bezier(0.250, 0.460, 0.450, 0.940) both 3s;
}

.number2 {
  right: 2.5rem;
  animation: rotate-in-center 0.6s cubic-bezier(0.250, 0.460, 0.450, 0.940) both 3.5s;
}

.number3 {
  left: 100%;
  animation: rotate-in-center 0.6s cubic-bezier(0.250, 0.460, 0.450, 0.940) both 4s;
}

.number1 h1,
.number2 h1,
.number3 h1 {
  color: black;
}

.title-bild-container {
  margin-left: -2px;
  margin-top: 5px;
}

.title-bild {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border: 2px solid white;
  animation: fade-in 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both 1s;
}

.step-image {
  max-width: 400px;
  height: auto;
  object-fit: cover;
  border-radius: 20px;
  border: 2px solid white;
  margin-top: 10px;
}

.title-text {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 25px;
  animation: tracking-in-expand 2s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
}

.einleitung{
  display: flex;
  justify-content: center;
  padding: 0 10px;
  font-size: 20px;
  animation: fade-in 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both 1.5s;
}

.anleitung-title{
  display: flex;
  justify-content: center;
  margin-top: -30px;
  text-decoration: underline;
  color: white;
  animation: fade-in 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both 2s;
}

@media screen and (max-width: 780px) {

  .information-container1,
  .information-container2,
  .information-container3 {
    width: 70%;
  }

  /*.information-container1 {
    margin-top: -30px !important;
  }*/

  .information-container2 {
    top: 33.5rem;
  }

  .information-container3 {
    top: 35rem;
  }

  .title-bild {
    height: 230px;
  }

  .step-image {
    width: 250px;
  }

  .title-text {
    font-size: 18px;
  }

  .back-button-container {
    margin-top: 0px;
  }

  .back-button {
    padding: 5px 9rem;
  }

  .einleitung{
    font-size: 17px;
    justify-content: start;
  }
}