* {
  box-sizing: border-box;
}

body {
  font-family: "Open Sans", sans-serif;
  padding: 0;
  margin: 0;
  min-height: 100vh;
  position: relative;
  color: white;
  text-rendering: geometricPrecision;
}

.blur {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: url("bg-girl.7b6b9eef.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-color: #D16D8B;
  background-blend-mode: multiply;
  z-index: 0;
  filter: blur(5px);
}

.main {
  min-height: calc(100vh - 110px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  width: 100%;
}

.logo {
  width: 16vh;
  max-width: 150px;
  z-index: 10;
}
.logo img {
  width: 100%;
}

h1 {
  font-size: 4vh;
  text-align: center;
  margin: 0;
  font-weight: normal;
  line-height: 1.4;
  padding: 30px 0;
  z-index: 10;
}

.btn-group {
  display: flex;
  flex-direction: column;
}

.btn {
  background: #fff;
  border-radius: 18px;
  display: block;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 30px;
  min-height: 90px;
  box-shadow: 2px 2px 5px 0 rgba(0, 0, 0, 0.3);
  max-width: 300px;
  position: relative;
  margin-top: 15px;
}
.btn svg {
  max-height: 60px;
  max-width: 100%;
}
.btn:before {
  border-radius: 18px;
  background-color: #D16D8B;
  position: absolute;
  opacity: 0;
  top: 150%;
  right: 0;
  bottom: 0;
  left: 0;
  content: "Seite besuchen";
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-family: Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
}
.btn:hover:before {
  top: 0;
  opacity: 1;
}
.btn--rossmann {
  padding: 0 30px;
}
.btn--rossmann img {
  max-width: 80%;
  max-height: 90px;
}
.btn--second {
  order: 2;
}

.legal {
  font-size: 12px;
  text-align: center;
  padding: 30px 0 0 0;
  z-index: 10;
  font-family: Arial, Helvetica, sans-serif;
}
.legal a {
  display: inline-block;
  margin: 0 10px;
  color: #fff;
  text-decoration: none;
}

/*# sourceMappingURL=style.97fcb138.css.map */