.container {
  display: inline-flex;
  flex-wrap: wrap;
  margin: auto;
}

.view {
  min-width: 200px;
  text-align: center;
  float: left;
  width: 25%;
  height: auto;
  margin: 10 auto;
  box-sizing: border-box;
}

.view img {
  background-color: black;
  margin-top: 5;
  margin-left: 5px;
  margin-right: 5px;
  height: 180px;
  width: 95%;
  max-width: 400px;
  object-fit: cover;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.5)
}

.view img:hover {
  /*Very thick border for transparent overlay*/
  outline: 90px solid rgba(255, 255, 255, 0.1) !important;
  outline-offset: -90px; /*Remember, the absolute should be half the image height*/
  overflow: hidden;
  position: relative;
}

.desc {
  //height: 50px;
  line-height: 1;
  padding-top: 15px;
  text-align: center;
  color: white;
}

.poster {
  display: flex;
  justify-content: center;
  min-height: 100px;
  height: auto;
  width: 70%;
  min-width: 200px;
  background-color: rgba(48, 48, 48, 0.6);
  backdrop-filter: blur(8px); /* blur behind the box */
  -webkit-backdrop-filter: blur(8px); /* Safari support */
  padding: 10px;
  margin: 10px auto;
  border-radius: 20px;
  overflow-y: auto;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.3);
}
