@import "../css/base.css";

body{
	-webkit-background-size:cover;
	-moz-background-size:cover;
	-o-background-size:cover;
	background-size:cover;
	display:flex;
	justify-content:center;
	align-items:center;
	flex-direction:column;
	background:black;}
div{
	display:flex;
	justify-content:center;
	align-items:center;
	flex-direction:column;
	animation-name:fadeInFadeOut;
  	animation-iteration-count:infinite;
  	animation-timing-function:ease-in;
  	animation-duration:var(--delay-anim);
  	-webkit-animation-name:fadeInFadeOut;
  	-webkit-animation-iteration-count:infinite;
  	-webkit-animation-timing-function:ease-in;
  	-webkit-animation-duration:1.5s;
  	-moz-animation-name:fadeInFadeOut;
  	-moz-animation-iteration-count:infinite;
  	-moz-animation-timing-function:ease-in;
  	-moz-animation-duration:1.5s;
  	-ms-animation-name:fadeInFadeOut;
  	-ms-animation-iteration-count:infinite;
  	-ms-animation-timing-function:ease-in;
  	-ms-animation-duration:1.5s;
  	-o-animation-name:fadeInFadeOut;
  	-o-animation-iteration-count:infinite;
  	-o-animation-timing-function:ease-in;
  	-o-animation-duration:1.5s;}
i{font-size:210px;color:white;}
h1{margin-top:50px;font-size:60px;color:white;font-family:heavitas;}
p{font-family:renault;color:white;position:absolute;bottom:10%;}
.fadein{animation-name:fadeIn;
  	animation-iteration-count:1;
  	animation-timing-function:ease-in;
  	animation-duration:0.8s;
  	-webkit-animation-name:fadeIn;
  	-webkit-animation-iteration-count:1;
  	-webkit-animation-timing-function:ease-in;
  	-webkit-animation-duration:0.8s;
  	-moz-animation-name:fadeIn;
  	-moz-animation-iteration-count:1;
  	-moz-animation-timing-function:ease-in;
  	-moz-animation-duration:0.8s;
  	-ms-animation-name:fadeIn;
  	-ms-animation-iteration-count:1;
  	-ms-animation-timing-function:ease-in;
  	-ms-animation-duration:0.8s;
  	-o-animation-name:fadeIn;
  	-o-animation-iteration-count:1;
  	-o-animation-timing-function:ease-in;
  	-o-animation-duration:0.8s;}