h1 span {
	position: absolute;
  	opacity: 1; 
  	transition: opacity 0.5s;
}

h1 span:last-child {
  	animation: fadeIn 6s forwards;
}

h1 {
	padding-left: 100px;
	position: relative;
	font-size: 100px;
}

	body {
	
		background-image: url("./Website-Eventually.jpg");
		background-repeat: no-repeat;
	}

@keyframes fadeIn {
	  from {
	    opacity: 0;
	  }
	  to {
	    opacity: 1; 
	  }
}
