body{
	margin:0;
}
.support{
	position: absolute;
	width:100vw;
	height: 100vh;
	overflow: hidden;
}
.container{
	width:100%;
	height:100%;
	position:absolute;
	background-image:url(../img/slider_home_bottom.jpg);
	background-size: cover;
	transform:scale(1);
	animation:container 1s;
}
@keyframes container{
	0%{transform: scale(1.2);}
	100%{transform: scale(1);}
}
.container>.mask{
	position:relative;
	width:100%;
	height:100%;
	background: linear-gradient(transparent,rgba(0,0,0,0.4),#000);
	display: flex;
	align-items: center;
	justify-content: center;
}
.container>.mask>.content{
	text-align: center;
	padding:1rem;
	animation:content 4s;
	opacity: 1;
}
@keyframes content{
	0%{opacity:0;}
	100%{opacity:1;}
}
.container>.mask>.content>h1{
	color:white;
	font-size:1.7rem;
	font-family:arial;
}
