

/**** background image ****/
.bgImg2{
  background: rgb(128,43,120);
  background: linear-gradient(180deg, rgba(128,43,120,1) 0%, rgba(148,77,142,1) 2%, rgba(158,94,153,1) 4%, rgba(169,113,165,1) 7%, rgba(181,132,177,1) 10%, rgba(189,145,185,1) 13%, rgba(255,255,255,1) 100%);
}

/**** responsive grid galerie ****/
.grid {
    display: grid;
    grid-template-rows: 
      repeat(4, 180px);
    grid-template-columns: 
      repeat(3, 1fr);
    grid-gap: 5px;
    margin: auto;
    max-width:1000px;
}
  
.item:nth-child(1) {
  grid-row: 1 / 4;
}

.item:nth-child(2) {
  grid-column: 2 / 4;
  grid-row: 1 / 3;
}

.item:nth-child(3) {
  grid-column: 3 / 4;
  grid-row: 3 / 5;
}

.item:nth-child(4) {
  grid-column: 2 / 3;
  grid-row: 3 / 4;
}

.item:nth-child(5) {
  grid-column: 1 / 3;
  grid-row: 4 / 5;
}

/* styling code */
.grid > .item {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

