* {
    box-sizing: border-box;
}

html {
    height: 100vh;
}

body {
    font-family: 'Marcellus', serif;
    margin: 0;
    padding-top: 50px;
}

main {
    color: #000;
    margin: auto;
    text-align: center;
}

header {
    width: 100vw;
}

#banner {
    background-image: url("https://d398t12htq9zi9.cloudfront.net/images/rig.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top 50% left;
    margin: 0;
    height: 12rem;
    padding: 0;
    position: relative;
    background-color: black;
}

#banner h1 {
    display: none;
}

#details {
    margin: auto;
    text-align: center;
    width: 100vw;
}

.detail {
    display: block;
    margin-left: 2rem;
    margin-top: 1rem;
    vertical-align: text-top;
}

.detail h2, ul, address, p {
    text-align: left;
}

.detail__list {
    margin: auto;
    text-align: center;
}

address {
    margin-left: 1.5rem;
}

@media (min-width: 40rem) {

    #banner {
        height: 24rem;
    }

    #banner h1 {
        color: Orange;
        position: absolute;
        top: .9rem;
        left: .9rem;
        font-size: 2rem;
        display: block;
    }

    #detail-left {
        padding: .9rem 1.5rem;
        border: 1px #ccc solid;
        width: 35vw;
    }

    .detail {
        display: inline-block;
        max-width: 20rem;
    }
}

footer {
    position: fixed;
    bottom: 0;
    color: white;
    background: black;
    width: 100vw;
    text-align: center;
    height: 2rem;
    font-size: .85rem;
    margin: 0 auto;
}

.footer__holder {
    vertical-align: middle;
}

.footer__holder a {
    text-align: center;
    position: relative;
    right: 0;
    padding: 0;
}

.footer__holder-image {
    height: .9rem;
    width: .9rem;
    border: none;
}

.gallery-header {
    display: block;
    width: 100vw;
}

.gallery-header h1{
    font-size: 1.5rem;
    text-align: center;
    padding-top: .3rem;
}

.gallery__container {
    width: 100vw;
    margin: auto;
}

.gallery__container-image {
    width: 100vw;
    display: inline-block;
    vertical-align: middle;
}

.gallery__image {
    width: 100vw;
    vertical-align: top;
}

.shim{
    height: 1rem;
}

@media (min-width: 40rem) {
    .gallery-header {
        margin: auto;
        text-align: center;
        padding: 0;
    }

    .gallery-header h1{
        font-size: 2rem;
    }

    .gallery__container-image {
        width: 80vw;
        display: block;
        max-width: 800px;
        box-shadow: 3px 3px 5px 3px rgba(0, 0, 0, 0.3);
        margin: auto auto 2rem;
    }

    .gallery__image {
        position: relative;
        vertical-align: top;
        width: 100%;
    }
}

/* Hide/rearrange for smaller screens */
@media screen and (max-width: 767px) {
    /* Hide captions */
    .carousel-caption {
        display: none;
    }
}