.film-block { 
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 30px;
  color: white;
  min-height: 100vh;
}
.film-left {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.film-left h2 {
  font-size: 36px;
  color: #fff;
  text-shadow: 0 0 5px #000;
}
.film-right {
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.5);
}
.txt-shadow {
  color: #fff;
  text-shadow: 0 0 3px #000;
}
.buttons {
  margin-top: 20px;
}
.buttons .btn {
  margin-right: 10px;
}
.modal-body {
  color: black;
}
@media (max-width: 768px) {
  .film-left{
    text-align: center;
  }
  .film-left h2 {
    font-size: 28px;
  }
  .film-right {
    padding: 10px;
  }
  .buttons {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 10px;
    order: 3;
  }
}