html, body {
	height: 100%;
	width: 100%;
	margin: 0;
	padding: 0;
	background: url('background-blur.jpg');
	text-align: center;
	background-size: cover;
	background-attachment: fixed;
}

body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	min-height: 760px;
}

.title {
	font-size: 30px;
	line-height: 35px;
	text-align: center;
	/* display: block; */
	padding-top: 30px;
	color: white;
	font-family: Nunito, Arial;
	font-weight: 700;
	width: 40% !important;
	margin: 0 auto;
	
}

video {
	width: 70%;
	max-width: 800px;
	margin-top: 40px;
	border-radius: 15px;
	box-shadow: 0px 0px 15px rgba(0,0,0,0.2);
}

img {
	display: block;
	margin: 40px auto 0 auto;
	background: white;
	padding: 15px 20px;
	border-radius: 10px;
	box-shadow: 0px 0px 5px rgba(0,0,0,0.10);
}

@media screen and (max-width: 1200px) {

	body
	{
		min-height:100% !important;
	}
	
	.title {
		width: 90% !important;
		line-height: 35px;
	}
	
	video {
		width: 90%;
	}
	
	img {
		width:180px; 
	}
	

}




@import url("https://fonts.googleapis.com/css?family=Montserrat&display=swap");

* {
  padding: 0;
  margin: 0;
}



h1 {
	font-family: "Nunito";
	line-height: 35px;
	/* max-width: 40ch; */
	max-width: 530px;
	text-align: center;
	transform: scale(0.94);
	animation: scale 3s forwards cubic-bezier(0.5, 1, 0.89, 1);
	color: white;
}
@keyframes scale {
  100% {
    transform: scale(1);
  }
}

span {
  display: inline-block;
  opacity: 0;
  filter: blur(4px);
}

span:nth-child(1) {
  animation: fade-in 0.8s 0.1s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

span:nth-child(2) {
  animation: fade-in 0.8s 0.2s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

span:nth-child(3) {
  animation: fade-in 0.8s 0.3s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

span:nth-child(4) {
  animation: fade-in 0.8s 0.4s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

span:nth-child(5) {
  animation: fade-in 0.8s 0.5s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

span:nth-child(6) {
  animation: fade-in 0.8s 0.6s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

span:nth-child(7) {
  animation: fade-in 0.8s 0.7s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

span:nth-child(8) {
  animation: fade-in 0.8s 0.8s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

/* span:nth-child(9) { */
  /* animation: fade-in 0.8s 0.9s forwards cubic-bezier(0.11, 0, 0.5, 0); */
/* } */

/* span:nth-child(10) { */
  /* animation: fade-in 0.8s 1s forwards cubic-bezier(0.11, 0, 0.5, 0); */
/* } */

/* span:nth-child(11) { */
  /* animation: fade-in 0.8s 1.1s forwards cubic-bezier(0.11, 0, 0.5, 0); */
/* } */

/* span:nth-child(12) { */
  /* animation: fade-in 0.8s 1.2s forwards cubic-bezier(0.11, 0, 0.5, 0); */
/* } */

/* span:nth-child(13) { */
  /* animation: fade-in 0.8s 1.3s forwards cubic-bezier(0.11, 0, 0.5, 0); */
/* } */

/* span:nth-child(14) { */
  /* animation: fade-in 0.8s 1.4s forwards cubic-bezier(0.11, 0, 0.5, 0); */
/* } */

/* span:nth-child(15) { */
  /* animation: fade-in 0.8s 1.5s forwards cubic-bezier(0.11, 0, 0.5, 0); */
/* } */

@keyframes fade-in {
  100% {
    opacity: 1;
    filter: blur(0);
  }
}