* {
  margin: 0;
  padding: 0;
}


#herum {
  height: 800px;
  width: 70%;
  background: linear-gradient(to right, rgba(5,5,5,1) 1%,rgba(237,201,0,1) 99%);
  position: relative;
  margin: 100px auto;
  
}


.margintop {
  height: 150px;
  width: 300px;
  flex-basis: 47.5%;
  flex-grow: 1;
  margin: 10px 10px 10px 90px;
  display: inline-block;
}
    /* Hier sind 4 DIVs mit den 4 Bilder*/

.img1 {
  height: 150px;
  width: 300px;
  object-fit: cover;
  background-color: blue;
}

.img2 {
  height: 150px;
  width: 300px;
  object-fit: contain;
  background-color: blue;
  margin-left: 20px;
}

#fixed {
position: fixed;
} 

.img3 {
  height: 150px;
  width: 300px;
  object-fit:fill;
  background-color: rgb(126, 126, 210);
  
}

#absolute {
  position: absolute;
  top: 50px;
  left: 100px;
  /*z-index: 2;*/

}

.img4 {
  height: 150px;
  width: 300px;
  object-fit: cover;
  object-position: 10px 10%;
  background-color: blue;
  position: relative;

}

#sticky {
  position: sticky;
  top: 0;
}
#content {
  width: 300px;
  height: 200px;
  background-color: white;
  margin-left: 10%;
  overflow: scroll;
}
  
  


