body {
	margin: 0;
	background-image: url(img/background.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	font-family: 'Open Sans', sans-serif;
}

header {
	position: absolute;
	padding-top: 20px;
	padding-left: 50px;
}

a {
	text-decoration: none;
	color:#00558d;
}

h1 {
	font-size: 3em;
	color: #333;
}

h3{
	font-weight: 400;
	color: #333;
}

p {
	font-size: 0.9em;
}

footer {
	padding-left: 50px;
	position: absolute;
	bottom: 0;
}

.logo {
	max-width: 90%;
}

.intro {
	display: flex;
	flex-flow: column;
	justify-content: center;
	padding-left: 100px;
	height: 100vh;
}

.social {
	display: flex;
	flex-flow: row wrap;
	justify-content: flex-start;
	align-items: center;
}
.social img{
	margin: 10px;
	width: 50px;
	height: 50px;
}


/* Animations */

.anim1 {
	animation-name: text-focus;
	animation-duration: 1s;
	animation-timing-function: ease;
	animation-delay: 0s;
	animation-iteration-count: 1;
	animation-direction: normal;
	animatino-fil-mode: none;
	transition: all 0.5s ease;
}

@keyframes text-focus {
	0%{
		filter: blur(12px);
		opacity: 0;
    	transform: translateY(50px);
	}
	100%{
		filter: blur(0);
		opacity: 1;
		transform: translateY(0px);
	}
}


@media only screen and (max-width: 900px) {
	header {
		padding: 20px;
		text-align: center;
		background-image: none;
		background-image: #fafafa;
	}
	footer {
		text-align: center;
		padding-left: 0;
	}
	footer p {
		text-align: center;
		padding-left: 20px;
		padding-right: 20px;
	}
	.intro {
		padding-left: 20px;
		padding-right: 20px;
		align-items: center;
	}
}