html {
    position: relative;
    min-height: 100%;
}

/* Move down content because we have a fixed navbar that is 50px tall */
body {
    padding-top: 50px;
    /* Change padding bottom if content is getting cut off on smaller devices */
    padding-bottom: 160px;
    /* Margin bottom by footer height */
    margin-bottom: 60px;
    background-color: #f2f2f2;

    /* Font Stylings */
    font-size: 1.5em;
    color: #1d1d1d;
}


/* fix padding under menu after resize */
@media screen and (max-width: 767px) {
    body { padding-top: 50px; }
}
@media screen and (min-width:768px) and (max-width: 991px) {
    body { padding-top: 101px; }
}
@media screen and (min-width: 992px) {
    body { padding-top: 50px; }
}

.gabtek-large-text {
    font-size: 21px;
    font-weight: 200;
}

.gabtek-medium-text {
    font-size: 18px;
    font-weight: 200;
}

/* Navbar Stylings */
.gabtek-nav.navbar.navbar-inverse {
    background-color: #011c23;
}

.navbar-brand {
    padding-top: 5px;
    padding-bottom: 5px;
}

.navbar .navbar-nav > li > a:hover {
    color: #BBD62C;
}

.gabtek-nav.navbar.navbar-inverse .navbar-nav .active > a,
.gabtek-nav.navbar.navbar-inverse .navbar-nav .active > a:hover,
.gabtek-nav.navbar.navbar-inverse .navbar-nav .active > a:focus {
    background-color: #BBD62C;
}

/* Footer Stylings */
.footer {
    position: absolute;
    bottom: 0;
    padding: 0 15px;
    width: 100%;
    /* Set the fixed height of the footer here */

    background-color: #011c23;
}

.footer .container .text-muted {
    margin: 20px 0;
}

.footer .container .footerlink {
    text-decoration: none;
}

.footer .container .footerlink:hover {
    color: #BBD62C;
}

/* Home Stylings */
.jumbotron {
    text-align: center;
}

.jumbotron img{
    padding-left: 20px;
    padding-right: 20px;
}

/* Gallery Stylings */
.gabtek-gallery {
    margin-bottom: 20px;
    height: 113px;
    overflow: hidden;
    text-align: center;
}

.gabtek-gallery-overview-text {
    text-align: center;
}

.header-image {
    position: relative;
}

.header-image h1 {
    opacity: 0.8;
    bottom:15%;
    left:0;
    position: absolute;
    background-color: #BBD62C;
    padding-right: 5px;
}

.header-image h1 span {
    color: white;
    background: #011c23;
    padding-left: 10px;
    padding-right: 10px;
}

@media (min-width: 768px) {
    .gallery-links {
        display: flex;
        align-items: flex-end;
    }
}