.body {
  text-align: center;
  background-image: url('../images/startbild.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  justify-content: center;
  align-items: center;
  padding: 0 60px;
  display: flex;
}

.container {
  height: 100%;
}

.div-logo {
  color: #000;
  background-image: url('../images/logo_bee.png');
  background-position: 50% 55%;
  background-repeat: no-repeat;
  background-size: contain;
  justify-content: center;
  align-items: center;
  width: 80%;
  height: 100vh;
  display: flex;
}

@media screen and (max-width: 991px) {
  .body {
    padding: 0 40px;
  }

  .div-logo {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .body {
    padding: 0 30px;
  }
}

@media screen and (max-width: 479px) {
  .body {
    padding-left: 5px;
    padding-right: 5px;
  }
}


