body{
    background: #000;
    margin: 0;
}
.container{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 85%;
    height: 100vh;
    margin: 0 auto;
}
.movie {
    position: relative;
    width:100%; 
    height:0;
    padding-top: 56.25%;
    overflow: hidden;
  }
  
  .movie iframe{
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    width: 100%;
    height: 200%;
  }
  @media screen and (max-width: 1200px){
    .container{
        width: 100%;
    }
  }