body {
  margin: 0;
  padding: 0;
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background-color: #f3f0ee;
  overflow: hidden;
}

#container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  flex-direction: column;
}

#logo-container {
  width: 800px;
  height: 800px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.imagecontainer {
  background-image: url('start/button.png');
  background-size: contain;
  background-repeat: no-repeat;
  width: 500px;
  height: 500px;
}

.imagecontainer:hover {
  transform: rotate(360deg);
  -webkit-transform: rotate(360deg);
}

.rollcontainer {
  background-image: url('start/anfangswein-logo-2.svg');
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  animation-name: spin;
  animation-duration: 16000ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(-360deg);
  }
}

#bottom {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
}

.left-bottom {
  flex: 1;
  display: flex;
  justify-content: flex-start;
  padding-left: 50px;
}

.left-bottom img {
  width: 300px;
}

.right-bottom {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  padding-right: 50px;
}

.right-bottom img {
  width: 300px;
}

@media only screen and (max-width: 1100px) {
  #bottom {
    flex-direction: column;
    padding-top: 80px;
  }

  .left-bottom, .right-bottom {
    padding-left: 0px;
    padding-right: 0px;
    justify-content: center;
  }

  .right-bottom {
    padding-top: 20px;
  }

  #logo-container {
    width: 500px;
    height: 500px;
  }

  .imagecontainer {
    width: 70%;
    height: 70%;
  }

  .left-bottom img, .right-bottom img {
    width: 300px;
  }
}

@media only screen and (max-width: 500px) {
  #logo-container {
    width: 290px;
    height: 290px;
  }

  .left-bottom img, {
    width: 280px;
  }

  .right-bottom img {
    width: 200px;
  }
}