.button1 {
  display: flex;           /* Flexbox aktivieren */
  justify-content: center; /* horizontal zentrieren */
  align-items: center;     /* vertikal zentrieren */
  width: 500px;
  height: 60px;
	margin-top: 50px;
	margin-left: 350px;
  background-color: lightblue;
  text-decoration: none;
  color: black;
	border-radius: 18px;
}

.button2 {
  display: flex;           /* Flexbox aktivieren */
  justify-content: center; /* horizontal zentrieren */
  align-items: center;     /* vertikal zentrieren */
  width: 500px;
  height: 60px;
	margin-top: 10px;
	margin-left: 350px;
  background-color: lightblue;
  text-decoration: none;
  color: black;
	border-radius: 18px;
}

.mindful {
  display: flex;           /* Flexbox aktivieren */
  justify-content: center; /* horizontal zentrieren */
  align-items: center;     /* vertikal zentrieren */
  width: 500px;
  height: 60px;
	margin-left: 350px;
	margin-top: 500px;
  background-color: lightblue;
  text-decoration: none;
  color: black;
	border-radius: 18px;
}