body{
  background-color: #000;

  display: flex;
  justify-content: center;
  align-items: center;
}

#container{
  width: 50%;
  height: 600px;

  border-radius: 5px;

}

#inner_container{
  width: 100%;
  height: 80%;

  box-shadow: 0px 0px 36px -22px #2B2D42;
  float: center;
  margin-bottom: 33px;

}

img{
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  height: auto;
  border-radius: 10px;  
}

#button_container{
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

button{
  width: 300px;
  height: 100%;

  font-size: 20px;
  color: white;
  border: none;
  outline: none;
  cursor: pointer;

  border-radius: 5px;
  background-color: #000;
}

button:hover{
  transition: 0.05s;
  background-color: #000;
  box-shadow: 0 0 30px -10px #000;
}

.container {
  position: relative;
  width: 100% !important;
  height: auto !important;
  padding-bottom: 56.25%;
}
.video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}