* {
  margin: 0;
  padding: 0;
}

body {
  background-color: black !important;
}

#overlay-content {
  position: absolute;
  left: calc(50% - 7rem);
  /* Comment display none for dom overlay to work */
  /* display: none; */
}

#container {
  width: 14rem;
  color: white;
  margin: 2rem auto;
  font-family: Arial, Helvetica, sans-serif;
}

img {
  width: 150px;
  height: 190px;
  border-radius: 5px;
}
img:hover {
  opacity: 0.5;
  border: 2px solid blueviolet;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 8px;
}
.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: 10px;
}
.col-lg-2 {
  flex: 15%;
  max-width: 40%;
  padding: none;
}

/* style mobile  */
@media (max-width: 768px) {
  .col-lg-2 {
    flex: 50%;
    max-width: 50%;
  }

}
/* hidden button arButton */
#arButton {
  display: none !important;
}
