/* ------- Document ------- */

body {
	background: url('../img/wood_bg.jpg') no-repeat center center fixed;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	/*background: #F0F0F0;*/
	margin: 0px;
	padding: 0px;
	height: 100%;
	width: 100%;
}

ul {
	margin: 0px;
	padding: 0px;
}

p {
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
    margin: 20px 0;
    font-family: 'Roboto Slab', serif;
}

/* ------- Headers ------- */

h1, h2, h3, h4, h5, h6 {
	margin: 0px;
}

h1 {
	font-family: 'Oswald', serif;
	font-size: 30px;
    height: 45px;
}

h3 {
	font-family: serif;
	font-weight: normal;
	font-size: 20px;
}

h4 {
    letter-spacing: 7px;
    font-size: 10px;
    font-family: 'georgia', serif;
    font-weight: normal;
    text-align: center;
}

/* ------- General ------- */

a {
    color: #FFC200;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: red;
}

.center {
	text-align: center;
}

.left {
	text-align: left;
}

.right {
	text-align: right;
}

.wrapper {
	width: 500px;
	margin: 0 auto;
}

.icon {
	display: inline-block;
}

.fa {
	padding-right: 10px;
}

.buffer-small {
	height: 25px;
}

.buffer-medium {
	height: 40px;
}

.buffer-large {
	height: 75px;
}

.pull-left {
	float: left;
}

/* ------- Header ------- */

/* ------- Content ------- */

.tagline {
	letter-spacing: 1px;
	font-family: 'open sans';
}

.content {
    font-family: 'Open Sans', serif;
    color: #FFF;
    background: rgba(0, 0, 0, 0.78);
    box-shadow: 0 0 21px rgba(0, 0, 0, 0.18);
    padding: 45px;
}

#card {
    margin-top: 50px;
    animation: fadeIn 1s, drop 1s;
    -moz-animation: fadeIn 1s, drop 1s ; /* Firefox */
    -webkit-animation: fadeIn 1s, drop 1s; /* Safari and Chrome */
    -o-animation: fadeIn 1s, drop 1s; /* Opera */
}

#description {
    margin-top: 14px;
    margin-bottom: 50px;
    animation: fadeIn 1s;
    -moz-animation: fadeIn 1s; /* Firefox */
    -webkit-animation: fadeIn 1s; /* Safari and Chrome */
    -o-animation: fadeIn 1s; /* Opera */
}


.contact ul li {
	font-size: 14px;
	list-style-type: none;
}

/* ------- Footer ------- */

/* ------- Animation: Fade down ------- */

@keyframes fadeIn {
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}
@-moz-keyframes fadeIn { /* Firefox */
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}
@-webkit-keyframes fadeIn { /* Safari and Chrome */
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}
@-o-keyframes fadeIn { /* Opera */
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}


/* ------- Animation: Drop; ------- */

@keyframes drop {
    from {
        margin-top:0;
    }
    to {
        margin-top:50px;
    }
}
@-moz-keyframes drop { /* Firefox */
    from {
        margin-top:0;
    }
    to {
        margin-top:50px;
    }
}
@-webkit-keyframes drop { /* Safari and Chrome */
    from {
        margin-top:0;
    }
    to {
        margin-top:50px;
    }
}
@-o-keyframes drop { /* Opera */
    from {
        margin-top:0;
    }
    to {
        margin-top:50px;
    }
}
