body {
    background-color: cornsilk;
    color: black;
    font-family: 'PT Sans Narrow', sans-serif;
    font-size: 1.5em;
}

p {
    font-size: 0.8em;
}

.smart-scroll {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
}

.scrolled-down {
    transform:translateY(-100%); transition: all 0.3s ease-in-out;
}

.scrolled-up {
    transform:translateY(0); transition: all 0.3s ease-in-out;
}

.navbar-brand {
    font-family: 'Marck Script', cursive;
    color: white;
    font-size: 1.5em;
}

main {
    position: relative;
    top: -1.8em;
}

h1 {
    font-family: 'Marck Script', cursive;
}

h3 {
    font-size: 0.9em;
    font-weight: bold;
}

#banner {
    /* background-color: teal; */
    background-image: url("../images/banner.jpg");
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: center;
    color: white;
    margin: 0.15em 0 0 0;
    padding: 0px;
    height: 8em;
}

#bannerImageText {
    font-family: 'Marck Script', cursive;
    font-size: 2.67em;
    text-align: center;
    text-shadow: 0px 0px 2px black;
    line-height: 75%;
    position: relative;
    top: 0.7em;
}

#intro {
    background-color: cornsilk;
}

#quoteJumbotron {
    height:100%;
    background: url(../images/indoors04.jpg) no-repeat;
    background-size: 100% auto;
    background-position: center;
    background-blend-mode: multiply;
    opacity: 0.5;
}

#quoteBody {
    font-family: 'Marck Script', cursive;
    color: white;
    text-shadow: 0px 0px 5px black;
    font-size: 1em;
    position: absolute; /* Using opacity to darken the jumbotron (grey background behind it), but if this text is within the jumbotron it inherits that opacity */
    top: 0px; /* Putting the text immediately BELOW the jumbotron, then setting this absolute position slides it over the top :) */
    z-index: 5;
}

#slideshow {
    background-color: white;
    padding: 0px;
}

.d-block { /* Scale the carousel images to fit */
    width: auto;
    height: 10em;
    max-height: 10em;
}

#order {
    background-color: cornsilk;
}

#orderButton {
    position: relative;
    left: 15%;
    font-size: 1.5em;
}

#orderButtonOrderPage {
    font-size: 1.5em;
}

#info {
    background-color: cornsilk;
}

li {
    font-size: 0.8em;
    margin-bottom: 0.2em;
}

#events {
    background-color: white;
}

#address {
    background-color: white;
}

#map {
    background-color: cornsilk;
}

#copyNotice {
    font-size: 0.9em;
    text-align: center;
}

#bottomSpacer {
    height: 2.5em;
}

#covidInfo {
    background-color: #343a40;
    color: white;
    z-index: 5;
    transition: all 300ms;
    transition-timing-function: ease-in;
}

#disclaimer {
    border: 2px solid slategrey;
    border-radius: 5px;
    margin: 10px;
    width: 90%;
}

@media only screen and (max-width: 295px) {
    #quoteJumbotron {
        background-size: auto 100%;
    }

    #quoteBody {
        font-size: 0.65em;
    }
}

@media only screen and (max-width: 480px) {
    #quoteJumbotron {
        background-size: auto 100%;
    }

    #quoteBody {
        font-size: 0.85em;
    }
}

@media only screen and (max-width: 576px) {
    #quote {
        height: 11em;
    }
    #quoteBody {
        font-size: 0.85em;
    }
}

@media only screen and (min-width: 576px) {
    #bannerImageText {
        font-size: 3.33em;
        position: relative;
        top: 0.5em;
        line-height: 100%;
    }

    #orderButton {
        position: relative;
        left: 25%;
        font-size: 1.5em;
    }

    #quoteBody {
        font-size: 0.85em;
    }
}

@media only screen and (min-width: 768px) {
    #bannerImageText {
        font-size: 3.33em;
        padding-top: 0.3em;
    }

    #orderButton {
        position: relative;
        left: 35%;
        font-size: 1.6em;
    }
}

@media only screen and (min-width: 992px) {
    #bannerImageText {
        font-size: 4.2em;
        padding-top: 0.2em;
    }
}