*,
::before,
::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Playfair Display, sans-serif;
  background: #f1f1f1;
}

.home {
  height: 100vh;
  position: relative;
}

video {
  object-fit: cover;
  position: absolute;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 2;
   /* background: rgba(0,0,0,0.6); */
}

.home-content {
  width: 400px;
  max-width: 90%;
  margin: 0 auto;
  position: relative;
  top: 20px;
  color: #fff;
  z-index: 3;
  opacity: 0.8;
}


.home-content:hover { 
  opacity: 1;
}
  
/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {  
  .home-content {
    top: 10px;
}}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) { 
   .home-content {
  top: 10%; 
}
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
  .home-content {
    top: 15%; 
  }
}

@media only screen and (min-width: 1600px) {
  .home-content {
    top: 30%; 
  }
}
 
 