body {
  height: 100%;
  width: 100%
}
.centerobjects {
  width: 100%;
  min-height: 95vh;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.galleryWall {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  height: 100%;
  flex-wrap: wrap;
  gap: 1rem;

  padding: 2em;
  border-radius: 20px;
}

.containImg {
  width: 200px;
  height: 200px;
  overflow: hidden;
  border-radius: 2em;
  
  background-color: #510000;
  
  transition: 0.3s
}

.containImg > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  
  filter: sepia(0.8) contrast(1.4);
  opacity: 0.6;
  transition: 0.5s;
 }

.containImg:hover {
  width: 250px;
  height: 250px;
  overflow: clip;
  border-radius: .5em;
}

.containImg > img:hover {
  filter: sepia(0) contrast(1);
  opacity: 1;
}

.bg-danger {
	background-color: #952e1a !important;
}