@import url("https://fonts.googleapis.com/css?family=Italianno");

@mixin breakpoint ($breakpoint){
	@media screen and (min-width: $breakpoint){
		@content;
	}
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: Italianno;
	color: white;
}

header {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	min-height: 100vh;
	
	background-image: url('forest.jpg'); /* Photo by weige zhang on Unsplash */
	background-size: cover;
	background-position: center;
	
	position: relative;
	

	
}

	header::after {
		display: block;
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 0;
		background-color: rgba(0, 0, 0, 0.5);
	}

.content {
	position: relative;
	z-index: 1;
}

.name {
	opacity: 0;
	font-size: 42px;
	animation: atin 2s forwards
	
}

.surname {
	opacity: 0;
	font-size: 42px;
	animation: atin 2s forwards
}

.at {
	opacity: 0;
	font-size: 35px;
	animation: atin 2s forwards;
}

.name {
  animation-delay: 1s;
}

.at {
  animation-delay: 2s;
}

.surname {
  animation-delay: 3s;
}

@keyframes atin {
  from { opacity: 0;}
  to { opacity: 1;}
}

