.main_container{
    display: flex;
    position: relative;
    height:70vh;
    width:100%;
    margin:50px;
    flex-direction: column;
}

.moviebox{
    position: relative;
    margin:auto;
    height:100%;
    min-height:100%;
    min-width:1000px;
}
#movie1{
    height:100%;
    min-height:60px;
    display: block;
}

.movietag{
    position:absolute;
    top:3%;
    left:3%;
    font-size:20px;
    color:#ffffff93;
}

#seekbar{
  display: flex;
  position:absolute;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  width: 97%;
  cursor: pointer;
  bottom:-32px;
}

#seekbar:focus {
  outline: none;
}

#seekbar::-webkit-slider-runnable-track {
  height: 8px;
  background-color: #e6e6e6;
  border: 2px solid #adadad;
  border-radius: 5px;
}

#seekbar::-moz-range-track {
  height: 8px;
  background-color: #e6e6e6;
  border: 2px solid #adadad;
  border-radius: 5px;
}

#seekbar::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 19px;
  height: 19px;
  background-color: #e6e6e6;
  border: 2px solid #adadad;
  border-radius: 50%;
  margin-top: -7px; 
}

#seekbar::-moz-range-thumb {
  width: 19px;
  height: 19px;
  background-color: #e6e6e6;
  border: 2px solid #adadad;
  border: none;
  border-radius: 50%;
}

#soundbtn{
  display: flex;
  position:absolute;
  right:0px;
  bottom:-40px;
  height:30px;
  width:30px;
  padding:3px;
  background-color: #e8eaeb;
  border:1px solid #9c9b9b;
  border-radius:20px;
  cursor: pointer;
}