.luxeH1 {
	font-size: 50px;
	background: #00FF00;
	background: linear-gradient(to left, #00FF00 0%, #00FFFF 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;

}
.luxe {
	font-size: 40px;
	background: #00FF00;
	background: linear-gradient(315deg, #ef1714 , #66bb32 , #9b5efd);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent; 
}
.begin {
	position: absolute;
	bottom: -58px;
	font-size: 40px;
	width: 100%;
	text-align: center;
	font-weight: bold;
	z-index: 9999;
}

@media only screen and (max-width: 1024px) {
	.luxeH1 {
		font-size: .8em;
		background: #00FF00;
		background: linear-gradient(to left, #00FF00 0%, #00FFFF 100%);
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
  	}
	.luxe {
		font-size: .5em;
		line-height: 1;
 		background: #00FF00;
		background: linear-gradient(315deg, #ef1714 , #66bb32 , #9b5efd);
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
	}	
	.begin {
		position: sticky;
		top: 55px;
		width: 100%;
		text-align: center;
		font-weight: bold;
		z-index: 9999;
	}
	
}

.video-container {
    height: 100vh;
    width: 100vw;
    position: relative;
}
.video-container video {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
  z-index: 0;
}
/* Just styling the content of the div, the *magic* in the previous rules */
.video-container .caption {
  z-index: -1;
  position: relative;
  text-align: center;
  color: #dc0000;
  padding: 10px;
}
@media only screen and (max-width: 1024px) {
  .video-container {
	display: none !important;   
  }
}

