.image {
	position: relative;
	}
.img {
	
	width: 80%;
	}
h2 {
	position: absolute; 
	top: 20%; 
	left: 10%; 
	width: 100%; 
	}
	
h2 span{
	animation-duration: 1000ms;
	animation-name: blink;
	animation-iteration-count: infinite;
	animation-direction: alternate;
	color: white; 
	font: bold 48px/45px Helvetica, Sans-Serif; 
	letter-spacing: 5px;  
	background: rgb(0, 0, 0); /* fallback color */
	background: rgba(0, 0, 0, 0.7);
	padding: 20px; 
	}

@keyframes blink {
	from {
		opacity: 1;
		}
	to {
	opacity: 0;
		}
	}