h1{
  text-align: center ;
  text-transform: uppercase;
  font-family: 'Open Sans', sans-serif;
}

.main {
  /* height: 100%; */
  height:550px;
  display: grid;
  justify-content: center;
  align-items: center;
  grid-template-columns: 1fr 1fr;
  padding: 20px;
}

.showimages {
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  height: 550px;
}

.cilckedimage {
  border-radius: 10px;
  width: 550px;
  height: 500px;
}

.clicktoview {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  grid-gap: 10px;
  justify-content: space-around;
  align-items: center;
  overflow-y: auto;
  max-height: 550px;
  padding: 10px;
}

.clicktoview img {
  width: 170px;
  height: 170px;
  border-radius: 10px;
}

.clicktoview img:hover {
  transition: 0.3s linear all;
  width: 160px;
  height: 160px;
  cursor: pointer;
}
