
* {
  margin: 0;
  padding: 0;
}

header {
  height: 100vh;
  background-image: url(img/hires-unsplash.jpg);
  background-size: cover;
  background-position: center;

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

 header img {
   width: 30%;
   height: 30%;
 }

.wrapper-logo {
  position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.logo {
  width: 30%
  height: auto;
  //background-color: gold;
}
.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  //opacity: .9;
  overflow: hidden; }
  .bg-video__content {
    height: 100%;
    width: 100%;
    object-fit: cover; }
