section#hero {
  /* background-image: linear-gradient(
      to right bottom,
      rgba(186, 119, 87, 0.6),
      rgba(186, 119, 87, 0.6)
    ),
    url("../assets/images/heroBg.jpg"); */
  /* background-repeat: no-repeat;
  background-size: cover;
  background-position: center; */
  height: 800px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;

  #sampleMovie {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    object-fit: cover;
  }

  .widthContainer {
    position: relative;
    text-align: center;
    padding: 2rem 2rem 0rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;

    .header {
      margin-top: -40px;
      h1 {
        color: #312b1d;
        font-weight: bold;
        font-size: 30px;
        text-transform: uppercase;
        letter-spacing: 2px;
        animation: fadeIn ease-in 1;
        animation-fill-mode: forwards;
        animation-duration: 0.8s;
      }

      p {
        color: #312b1d;
        font-weight: bold;
        font-size: 20px;
      }
    }

    img {
      height: 150px;
      animation: fadeIn ease-in 1;
      animation-fill-mode: forwards;
      animation-duration: 0.8s;
      bottom: 0;
    }
  }
}

@media (max-width: 1700px) {
  #sampleMovie {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
  }
}
