.ImgAlbum {
    height: 100%;
    width: 100%;
    text-align: center;
  
    display: flex;
    flex-direction: column;
  }

.ImgItem {
  background-color: var(--color3);
  width: 400px;

  /* below is used to center text using a flexbox layout of the text in an FlexItem */
  display: flex;
  flex-direction: column;     
  align-items: center;       
  justify-content: center;
  margin: 10px;
  padding: 10px;
  box-shadow: inset 0 0px 30px 10px var(--color1);
  border-radius: 15px;
}

.ImgAlbum img {
  max-width: 100%;
  border-radius: 10px;
}

.ImgAlbum p {
  padding: 5px;
  font-size:small;
}

@media (orientation: landscape) {
  .ImgAlbum {
  height: 100%;
  width: 100%;
  text-align: center;
  
  display: flex;
  flex-wrap: wrap;        
  flex-direction: row;
  align-items: flex-start;    
  justify-content: space-around;
}

.ImgItem {
    width: 200px;
  }
}