* {
  margin: 0%;
}

.parent {
display: grid;
grid-template-columns: repeat(5, 1fr);
grid-template-rows: repeat(8, 1fr);
grid-column-gap: 0px;
grid-row-gap: 0px;
}




body { 
  overflow: hidden;
}
.div1 { grid-area: 1 / 1 / 11 / 6; 
} 

.div1 img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  margin-top: auto;
  margin-bottom: auto;
}

.div2 { grid-area: 5 / 3 / 6 / 4;
        object-fit: contain;
}
