@charset "utf-8";
/* CSS Document */

* {
	box-sizing: border-box;
}
body {
	margin: 0;
	font-size: 1rem;
	line-height: 1.5;
	color: #333;
	overflow-x: hidden;
		  display: grid;
  place-items: center;
}
.header {
	height: 100vh;
	display: flex;
	align-items: center;
	text-align: center;
	color: #fff;
}
.content{
	max-width: 49rem;
	padding-left: 1rem;
	padding-right: 1rem;
	margin: auto;
	text-align: center;
	  
}
.header-video{
	position: absolute;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	overflow: hidden;
}
.header-video video{
	min-width: 100%;
	min-height: 100%;
}
.header-overlay{
	height: 100vh;
	width: 100vw;
	position: absolute;
	top: 0;
	left: 0;
	background: #303952;
	z-index: 1;
	opacity: 0.5;
}
.header-content{
	z-index: 2;
    text-align:inherit;
}
.header-content h1{
	font-size: 50px;
	display: block;
	padding-bottom: 2rem;
	  display: grid;
  place-items: center;
}
.header-content p{
	padding-bottom: 2rem;
	font-size: 25px;
	font-family: lobster;
}
.btn{
	background: #c44569;
	border-radius: 30px;
	outline: 2px solid #c44569;
    outline-offset: 3px;
	color: #fff;
	font-size: 1.2rem;
	padding: 1rem 2rem;
	text-decoration: none;
	font-family: lobster;
}
@media (max-width:900px) {
	.content{
		padding: 0 0rem 0 0rem;
	}
}
.video {
  position: fixed;
  top: 50%; left: 50%;
  z-index: 1;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
}
