
/*

i. General

1. body/html
2. nav
3. main
4. Portfolio
5. about
6. Contact
7. Footer
8. Pages
*/

/* General */

body {
	font-family: 'Raleway', sans-serif;
	font-weight: 400;
	background-color: #fff;
}

.top_bar {
	background-color: #404041;
	margin: 0 auto;
	width: 100%;
	height: 100px;
	text-align: center;
}

.top_bar h1 {
	color: #fff;
	padding-top: 30px;
}

.mid_bar {
	background-color: #525349;
	margin: 0 auto;
	width: 100%;
	height: 270px;
	overflow: visible;
	position: relative;
}

.bottom_bar {
	background-color: #F9A61D;
	margin: 0 auto;
	width: 100%;
	height: 80px;
	text-align: center;
	padding-top: 50px;
}

.bottom_bar h1 {
	font-size: 3em;
	font-weight: 400;
}

.content {
	margin: 0 auto;
	width: 50%;
	padding: 20px;
	text-align: center;
	font-size: 1em;
	line-height: 1.4em;
	margin-bottom: 20px;
}

.logo {
	width: 300px;
	margin: 0 auto;

	    -moz-animation-name: dropHeader;
    -moz-animation-iteration-count: 1;
    -moz-animation-timing-function: ease-in;
    -moz-animation-duration: 0.9s;

    -webkit-animation-name: dropHeader;
    -webkit-animation-iteration-count: 1;
    -webkit-animation-timing-function: ease-in;
    -webkit-animation-duration: 0.9s;

    animation-name: dropHeader;
    animation-iteration-count: 1;
    animation-timing-function: ease-in;
    animation-duration: 0.9s;

	transform: translateY(-25px);
	-moz-transform: translateY(-25px);
	-webkit-transform: translateY(-25px);
}

@-moz-keyframes dropHeader {
    0% { -webkit-transform: translateY(-500px);}
    45% {-webkit-transform: translateY(-15px);}
    65% {-webkit-transform: translateY(-32px);}
    80% {-webkit-transform: translateY(-21px);}
    92% {-webkit-transform: translateY(-30px);}
    100% {-webkit-transform: translateY(-25px);}
}
@-webkit-keyframes dropHeader {
    0% { -webkit-transform: translateY(-500px);}
    45% {-webkit-transform: translateY(-15px);}
    65% {-webkit-transform: translateY(-32px);}
    80% {-webkit-transform: translateY(-21px);}
    92% {-webkit-transform: translateY(-30px);}
    100% {-webkit-transform: translateY(-25px);}
}
@keyframes dropHeader {
    0% { -webkit-transform: translateY(-500px);}
    45% {-webkit-transform: translateY(-15px);}
    65% {-webkit-transform: translateY(-32px);}
    80% {-webkit-transform: translateY(-21px);}
    92% {-webkit-transform: translateY(-30px);}
    100% {-webkit-transform: translateY(-25px);}
}


.logo img {
	width: 100%;
	height: auto;
}

.email_btn {
	display: inline-block;
	color: #525349;
	padding: 10px 25px;
	border: solid 3px #525349;
	margin-top: 10px;
	font-weight: 700;
	text-decoration: none;
	transition: background-color 0.5s ease-in-out;
	-moz-transition: background-color 0.5s ease-in-out;
	-webkit-transition: background-color 0.5s ease-in-out;
}

.email_btn:hover {
	background-color: #525349;
	color:  #fff;
}

@media screen and (min-width: 0px) and (max-width: 480px) {
    .content {
        width: 90%;
    }
    .bottom_bar {
		height: 50px;
	}
    .bottom_bar h1 {
		font-size: 2em;
	}
	.top_bar {
		height: 100px;
	}
	.top_bar h1 {
		font-size: 80%;
		padding: 20px 10px;
		line-height: 1.4em;
	}
	.mid_bar {
		height: 160px;
	}
	.logo {
		width: 200px;
		margin: 0 auto;
		transform: translateY(-25px);
	}
	.content {
		font-size: 80%;
	}
}



