html, body {
    font-family: 'Open Sans', serif;
    font-size: 16px;
    line-height: 1.5;
    height: 100%;
    background: #232323;
}

nav.navbar {
    background: #0A0A0A;
}

.hero { /*
        background: #595959;
  background: -webkit-linear-gradient(to right, #232323, #595959);*/
        background: url("../static/shanty.jpg") no-repeat center center fixed;
     -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
.hero-body, .hero-head {

    color: #FFFDF7;
    text-shadow:
		-1px -1px 0 #000,
		1px -1px 0 #000,
		-1px 1px 0 #000,
		1px 1px 0 #000;
}

.hero-body .title {
    color: hsl(192, 17%, 99%) !important;
}

.hero-body .subtitle {
    color: hsl(192, 17%, 99%) !important;
    padding-top: 2rem;
    line-height: 1.5;
}

.features {
    padding: 5rem 0;
}


.card-image > .fa, .far {
    font-size: 8rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
    color: hsl(192, 17%, 99%) !important;
}

.card-content .content {
    font-size: 14px;
    margin: 1rem 1rem;
    color: hsl(192, 17%, 99%) !important;
}

.card-content .content h4 {
    font-size: 16px;
    font-weight: 700;
    color: hsl(192, 17%, 99%) !important;
}

.card {
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.18);
    margin-bottom: 2rem;
    height: 100%;
        width: 100%;

}

.is-shady {
    animation: flyintoright .4s backwards;
    background: #363636;
    box-shadow: rgba(0, 0, 0, .1) 0 1px 0;
    border-radius: 4px;
    display: inline-block;
    margin: 10px;
    position: relative;
    transition: all .2s ease-in-out;
}

.is-shady:hover {
    box-shadow: 0 10px 16px rgba(0, 0, 0, .13), 0 6px 6px rgba(0, 0, 0, .19);
}

/*adds font awesome stars*/
footer li:before {
    content: '\f1b2';
    font-family: 'FontAwesome';
    float: left;
    margin-left: -1.5em;
    color: #147efb;
}