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

*{
	margin: 0;
	padding: 0;
	font-size: 16px;
}

body{
	height: 100vh;
	width: 100vw;
	background-image: url(img/bg.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

main{
	max-width: 1024px;
	margin: 0 auto;
	position: relative;
	top: 50%;
	transform: translateY(-50%);
}

h1{
	font-family: 'Parisienne', cursive;
	font-size: 4em;
	text-shadow: 0 8px 16px black; 
	color: white;
	text-align: center;
	animation-duration: 1.5s;
  	animation-name: slidein;
  	animation-delay: 0.5s;
  	animation-fill-mode: ease-in-out;
}

@keyframes slidein {
  from {
    transform: translateY(120px);
    opacity: 0;
  }

  to {
    transform: translateY(0px);
    opacity: 1;
  }
}