*{
    padding: 0;
    margin: 0;
}
.header{
    padding: 0 10px;
    background-color: #fff;
    text-align: center;
}
.header img{
    width: 250px;
    height: 100px;
}

#myVideo {
    
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
  }

.full-container{
    position: relative;
    color: #fff;
}
.content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.content h1{
    font-size: 50px;
    margin-bottom: 10px;
    
}
.content h3{
    font-size: 30px;
    
    margin-bottom: 5px;
}
.content a{
    font-size: 18px;
    color: #fff;
    
}
.content p{
    font-size: 18px;
    margin-top: 10px;
}
.overlay{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, .7);
}

  