body {
  background-color: #8f1913;
  background-image: url(cinemaimg/cinemare3.png);
  background-repeat: no-repeat;
  background-size: cover;
  color: #f0ff7a;
  font-family: "Times New Roman", monospace;
  animation: fade-in 2s;
  text-shadow: 4px 4px 8px #000000;
}

/* unvisited link */
a:link {
  color: #e60909;
}

/* visited link */
a:visited {
  color: #e60909;
}

/* mouse over link */
a:hover {
  color: hotpink;
  font-weight: bold;
}

/* selected link */
a:active {
  color: hotpink;
  font-weight: lighter;
}

h1 {
  text-align: center;
  color: #f0ff7a;
  text-shadow: 4px 4px 8px #000000;
}

.bar {
  text-align: center;
  padding: 0;
  margin: 0;
}

.yt {
  text-align: center;
  padding: 15px;
  margin: 0;
  
}

.posters {
  margin-left: auto ;
  margin-right: auto ;
  display: flex;
  align-items: center;
  animation-duration: 3s;
  max-width: 90%;
}

.poster {
  padding: 1.5rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.poster img {
  width: 100%;
  box-shadow: 0.06rem 0.12rem 0 rgba(200, 100, 100, 0.5), 0 0.06rem 0 rgba(200, 100, 100, 0.5),
    0 0 5px rgba(0, 0, 0, 0.4);
  transition: ease-in-out 0.2s;
}

.poster img:hover {
  filter: saturate(1.75);
  transform: translateY(-8pt);
  box-shadow: 0.06rem 0.12rem 0 rgba(200, 100, 100, 0.5), 0 0.06rem 0 rgba(200, 100, 100, 0.5),
    0 9pt 8px rgba(0, 0, 0, 0.28);
}


