html {
    font-family: "PT Sans", Helvetica, Arial, sans-serif;
    color: #808080;
}

@font-face {
    font-family: 'Merriweather';
    font-style: normal;
    src: url(../../../content/static/fonts/merriweather.regular.ttf);
}

@font-face {
    font-family: 'MerriweatherUltrabold';
    font-style: normal;
    src: url(../../../content/static/fonts/merriweather.ultrabold.ttf);
}

nav {
    height: 35px;
}

.navbar {
    margin-left: -0.75rem;
    margin-right: -0.75rem;
}

.landing-page-heading, .page-heading {
    background: #d9c658;
    color: #a68400;
    margin-left: -0.75rem;
    margin-right: -0.75rem;
}

.landing-page-heading {
    height: 155px;
}

.page-heading {
    height: 75px;
}

@media only screen and (max-width: 800px) {
    .landing-page-title {
        font-family: 'MerriweatherUltrabold';
        font-weight: bold;
        font-size: 2.5rem;
        text-align: center;
        line-height: 2rem;
        padding-top: 20px;
    }

    .landing-page-subtitle {
        font-size: 1rem;
        text-align: center;
        padding-top: 10px;
    }
}

@media only screen and (min-width: 800px) {
    .landing-page-title {
        font-family: 'MerriweatherUltrabold';
        font-weight: bold;
        font-size: 3.25rem;
        text-align: center;
    }

    .landing-page-subtitle {
        font-size: 2rem;
        text-align: center;
    }
}

.landing-page-logo {
    float: right;
}

.landing-page-selector-image > img {
    width: 370px;
}

.landing-page-selector-caption {
    text-align: center;
    font-size: 2rem;
}

@media only screen and (max-width: 800px) {
    .page-title {
        font-family: 'MerriweatherUltrabold';
        font-weight: bold;
        font-size: 2rem;
        text-align: center;
    }

    .page-subtitle {
        font-size: 0.8rem;
        text-align: center;
    }
}

@media only screen and (min-width: 801px) {
    .page-title {
        font-family: 'MerriweatherUltrabold';
        font-weight: bold;
        font-size: 1.5rem;
        text-align: center;
    }

    .page-subtitle {
        font-size: 0.8rem;
        text-align: center;
    }
}

.page-logo {
    float: right;
    height: 75px;
}

.section-image > img {
    width: 100px;
}

.section-caption {
    text-align: center;
    font-size: 1rem;
}

.content a:hover {
    color: #a3a35a;
    text-decoration: underline;
    background-color: #ecec83;
}

.content a:active {
    color: #a3a35a;
    background-color: #ecec83;
}

.content a:link, .content a:visited {
    color: #a3a35a;
    text-decoration: none;
}

.content {
    line-height: 1.4;
}

.post-date {
    font-size: 70%;
}

h1 {
    color: #a68400;
    font-family: 'Merriweather', serif;
    font-size: 2.5rem;
    margin-top: 20px;
}

h2 {
    color: #a68400; 
    margin-top: 2em;
}

h3 {
    margin-top: 1.5em;
    font-size: 1.3rem;
}

a:hover {
    color: #a68400;
    text-decoration: underline;
    background-color: #ecec83;
}

a:active {
    color: #a68400;
    background-color: #ecec83;
}

a:link, a:visited {
    color: #a68400;
    text-decoration: underline;
}

@media only screen and (max-width: 800px) {
    img[src*="#tiny-image"] {
	height: 50px;
	float: left;
	margin-right: 20px;
	margin-bottom: 5px;
    }
    
    img[src*="#thumbnail"], img[src*="#small-image"] {
        width: 150px;
        float: left;
        margin-right: 20px;
        margin-bottom: 5px;
    }
    img[src*="#thumbnail-right"] {
        width: 150px;
        float: right;
        margin-left: 20px;
        margin-bottom: 5px;
    }

    img[src*="#small-image"] {
        float: left;
        margin-right: 20px;
        margin-bottom: 5px;
    }
    img[src*="#small-image-right"] {
        float: right;
        margin-left: 20px;
	margin-bottom: 5px;
    }
}

@media only screen and (min-width: 801px) {
    img[src*="#tiny-image"] {
        height: 50px;
        float: left;
        margin-right: 20px;
        margin-bottom: 5px;
    }
   
    img[src*="#thumbnail"] {
        width: 250px;
        float: left;
        margin-right: 20px;
	margin-bottom: 5px;
    }
    img[src*="#thumbnail-right"] {
        width: 250px;
        float: right;
        margin-left: 20px;
	margin-bottom: 5px;
    }
    img[src*="#small-image"] {
        float: left;
        margin-right: 20px;
	margin-bottom: 5px;
    }
    img[src*="#small-image-right"] {
        float: right;
        margin-left: 20px;
	margin-bottom: 5px;
    }
}

.sidestep {
    border: 1px #808080 solid;
    padding: 10px;
    background-color: #dddddd;
}

pre {
    border-radius: 5px;
    padding: 1em;
    border: 1px solid #ddd;
    margin: 1.5em 0;
    overflow: auto;
    background-color: #F7F7F7;
}

img {
    max-width: 100%;
}

h2, h3 {
    clear: both; // No floating elements allowed on either the left or the right side
}

/* Prevent breadcrumbs to be spread over multiple lines. */
.breadcrumb {
    display: block !important;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.breadcrumb .breadcrumb-item {
    display: inline;
    float: none;
}

.breadcrumb-item::before {
    float: none !important;
}

