/*
Project: namur.js
Description: a name and tagline generator for js/css/html libraries, frameworks, paradigms and other things
Version: v0.1
Project URI: cakehat.com/namurjs
Author: Hillary Barth
Author URI: cakehat.com
*/
body {
    color: #444444;
    font-family: 'Open Sans', Helvetica, Arial, sans-serif;
}
h1 {
    font-weight: 700;
}
a,
a:active,
a:visited,
a:hover,
a:focus {
    color: #ffff9d;
    text-decoration: none;
}
/* Header */
header {
    background: #00a388;
    padding: 32px 0;
    padding: 2rem 0;
}
.nav-header ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: distribute;
    justify-content: space-around;
}
.nav-header ul li {
    text-align: center;
    text-transform: uppercase;
}
.nav-header ul li a {
    display: block;
    position: relative;
}
.nav-header ul li a:after {
    content: '';
    position: absolute;
    height: 1px;
    width: 100%;
    left: 0;
    right: 0;
    top: 100%;
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
    margin: 0 auto;
    background: #ffff9d;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
    transition: height 0.3s, opacity 0.3s, transform 0.3s;
}
.nav-header ul li a:hover:after {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    height: 5px;
    opacity: 1;
    filter: alpha(opacity=100);
}
/* Marquee */
.marquee {
    background: #464646;
    color: #ffff9d;
    padding: 112px 0;
    padding: 7rem 0;
}
.logo h1 {
    text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
    font-family: 'Arbutus Slab', Rockwell, serif;
    font-size: 128px;
    font-size: 8rem;
    padding-bottom: 1rem;
}
@media (max-width: 768px) {
    .logo h1 {
        font-size: 4rem;
    }
}
.tagline {
    color: #ffff9d;
    font-size: 32px;
    font-size: 2rem;
    padding: 8px;
    padding: 0.5rem;
    position: relative;
    overflow: hidden;
}
.tagline:before {
    width: 55%;
    content: '';
    height: 2px;
    background-color: #00a388;
    position: absolute;
    top: 90%;
    left: 0;
    right: 0;
    margin: 0 auto;
}
.tagline:after {
    width: 55%;
    content: '';
    height: 2px;
    background-color: #00a388;
    position: absolute;
    top: 0%;
    left: 0;
    right: 0;
    margin: 0 auto;
}
section {
    padding: 80px 0;
    padding: 5rem 0;
}
.about {
    background: #00a388;
    color: #ffffff;
}
.about .fa {
    color: #ffff9d;
    text-shadow: 2px 2px #464646;
}
.about h2 {
    text-transform: uppercase;
    font-size: 22px;
    color: #ffff9d;
}
.about p {
    text-align: left;
}
.in-the-cloud i,
.get-more-done i,
.work-smarter i {
    -webkit-transition: -webkit-transform 300ms;
    transition: transform 300ms;
}
.in-the-cloud i {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
.in-the-cloud:hover i {
    -webkit-transform: scale(1.15);
    -ms-transform: scale(1.15);
    transform: scale(1.15);
}
.get-more-done i {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
}
.get-more-done:hover i {
    -webkit-transform: rotate(20deg);
    -ms-transform: rotate(20deg);
    transform: rotate(20deg);
}
.work-smarter i {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}
.work-smarter:hover i {
    -webkit-transform: translateX(50px);
    -ms-transform: translateX(50px);
    transform: translateX(50px);
}
.wtf {
    background: #ececec;
}
.wtf h2 {
    text-transform: uppercase;
    margin-top: 0;
}
.wtf a,
.wtf a:hover,
.wtf a:visited {
    color: #00a388;
}
.generate {
    background: #c6c6c6;
}
.namur-btn,
.namur-btn:focus {
    margin: 32px auto;
    display: block;
    font-size: 18px;
    border-radius: 0;
    background: #00a388;
    color: #ffff9d;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    padding: 15px;
    outline: none;
    text-transform: uppercase;
    border: none;
}
.namur-btn:hover,
.namur-btn:active {
    background: #00bc9d;
    outline: 0;
    color: #ffff9d;
}