html{
  font-family: sans-serif;
}

.banner {
  position: relative;
  height: 150px;
  border-bottom: 1px solid gray;
}

.banner img{
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.banner h1{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgba(255, 255, 255);
  font-size: 120px;
  padding: 0;
  margin: 0;
  text-shadow:  1px  1px 1px gray,
                  1px -1px 1px gray,
                 -1px  1px 1px gray,
                 -1px -1px 1px gray;
}
#videoD{
  width: 90%;
  max-width: 720px;
  margin: 30px auto;

}

#videoD h2{
  margin: 0 0 10px 0;
  font-size: 35px;
  font-weight: lighter;
}

#videoD div{
position: relative;
padding-bottom: 56.25%; /* 16:9, for an aspect ratio of 1:1 change to this value to 100% */
}

#video{
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
