html {
    height:100%;
}

body {
    padding-top: 50px;
    padding-bottom: 20px;
    font-family: 'Open Sans';
    font-weight: 100;
    height: 100%;
    background: url('/images/background_navy.png') repeat-x #30323c;
    background-attachment: fixed;
}

    body.homepage {
        background: url('/images/background.jpg') no-repeat center center fixed;
        background-size: cover;
    }

.navbar-inverse .navbar-brand {
    color: #bd9496;
}

.navbar-nav {
    width:80%;
}

.navbar-nav > li.topnav-right {
    float:right;
}
/*code page*/

.misspell {
    text-decoration: underline;
    text-decoration-color: red;
    text-decoration-style:wavy;
}

.row.glass {
    background: url('/images/background_blurred_navy.png') repeat-x #343540;
    box-shadow: 0px 0px 10px #2b2d38;
    width: 100%;
    margin-top: 60px;
    position: relative;
    background-attachment: fixed;
    overflow: hidden;
    border-radius: 10px;
    color: #eee;
    padding: 2% 8% 1% 8%;
    font-size: 1.2em;
    line-height: 1.4em;
}

.row-even {
    background-color:#222;
    padding:-15px;
    /*max-height:200px;*/
    border-top-right-radius:15px;
    border-bottom-right-radius:15px;
}

.row-even a, .row-odd a {
    float:left;
}

.row-odd {
    margin-bottom:15px;
}
/*code page end */

.artwork{
    margin: 3px;

}

    .artwork img {
        border-radius: 15px 15px 15px 15px;
    }

    .artwork::after {
        box-shadow: inset 0 0 15px #2b2d38;
        content: '';
        display: block;
        height: 100%;
        position: absolute;
        top: 0;
        width: 100%;
    }

.wrapper {
    text-align: center;
    font-size: 2em;
    height:100%;
}

    .wrapper div {
        transition: color 2.4s ease;
        color: #bbb;
        width: 200px;
    }

    .wrapper p {
        color: #eee;
    }

    .wrapper.home {
        display: flex;
        justify-content: center; /* align horizontal */
        align-items: center; /* align vertical */
        color:#eee;
        text-shadow:1px 1px 0px #000;
    }

.navbar-brand {
    text-shadow: 1px 1px 1px #000;
}

.wrapper div a {
    color: inherit;
    text-decoration: none;
}

.text-description {
    padding: 15px;
}

    .text-description p {
        margin-top: 15px;
        color:#eee;
    }

    .text-description h3 {
        color:#eee;
        margin-bottom:0px;
    }

/* bing maps custom infobox */
.customInfobox {
    background-color: rgba(0,0,0,0.5);
    color: white;
    max-width: 400px;
    border-radius: 10px;
    padding: 10px;
    font-size: 12px;
    cursor: pointer;
    pointer-events: auto !important;
}

    .customInfobox .title {
        font-size: 14px;
        font-weight: bold;
        margin-bottom: 5px;
    }

.left-column {
    width: 479px;
    float: left;
    position: relative;
}

.right-column {
    width: calc(100% - 479px);
    max-width: 450px;
    float: left;
    padding: 15px;
}

@media (orientation:portrait) and (max-width:840px) {
    .right-column, .left-column, .left-column img, .right-column img {
        width: 100%;
        max-width: 100%;
    }

    .navbar-nav > li.topnav-right {
        float: left;
    }
}