html {
    /* Static, full-size background. Src: https://css-tricks.com/perfect-full-page-background-image/#article-header-id-0 */
    background-image: url("../images/background.jpg");
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    height: 100%
}

body {
    
    /* Bootstrap/reboot sets it to white, but then it trumps the background image of <html> */
    background-color: unset;
}

.logo-image {
    max-width: 60px;
    max-height: 60px;
    vertical-align:middle;
    margin: 20px;
}

.main-container {
    background:rgba(255,255,255,0.65);
    padding: 5px 55px 20px 55px;
}

