html {
    position: relative;
    min-height: 100%;
    margin:0;
    padding:0
}

body {
    background-color:black;
    background-attachment: fixed;
    color: white;
    background-image: url('/media/wallworm_2019.jpg');
    padding:1em;
    font-size: 20px;
    margin-bottom: 80px; /* Margin bottom by footer height */
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

h1 {
    margin-bottom: 1em;
    color:orange
}
h2 {
    margin-bottom: 1em;
    color: rgb(230,230,200);
    font-style: italic;
}

#wwlogo {
    display:block;
    float:right;
    margin-bottom: 1em
}

nav.navbar {
    background-color: rgba(0,0,0,0.6) !important;
    width: 100%;
    margin-top:0;
    margin-bottom: 1em
}

.navbarDropdown, .dropdown-item:focus, .dropdown-menu, .dropdown-item {
    background-color: rgba(0,0,0,0.6) !important;
    color: rgb(200,200,200)
}

.dropdown-item:hover {
    background-color: rgba(60,60,0,0.1) !important;
    color: rgb(255,255,230)
}



blockquote {
    max-width: 500px;
    line-height: 1.8em
}

.artist {
    
    display:block;
    font-style: italic;
    color: orange;
    font-weight: bold;
    margin-top: 1em
    
}

#contentWrapper {
    margin-top:6em
}

.footer {
    position: absolute;
    bottom: 10px;
    left:0;
    width: 100%;
    height: 80px; /* Set the fixed height of the footer here */
    line-height: 80px; /* Vertically center the text there */
    margin:0;
    padding:0;
    white-space: nowrap;
}

.footer img {
    height: 60px;
    margin-left: 1em;
    margin-right:1em
}



@media screen and (orientation:portrait) {
    
    #contentWrapper {
        margin-top:1em
    }
    
    /* Extra small devices (portrait phones, less than 576px)*/
    @media (max-width: 767.98px) {
        body {
            background-image: url('/media/wallworm_2019_vertical_720.jpg');
        }
        .footer img {
            height: 40px;
            margin-left: 0.1em;
            margin-right:0.1em
        }
    }
    
    /*Small devices (landscape phones, 576px and up)*/
    @media (min-width: 767.99px) and (max-width: 1200px) {
        body {
            background-image: url('/media/wallworm_2019_vertical.jpg');
        }
    }
}

@media screen and (orientation:landscape) {


    /* Extra small devices (portrait phones, less than 576px)*/
    @media (max-width: 575.98px) {
        body {
            background-image: url('/media/wallworm_2019_480.jpg');
        }
    }

    /*Small devices (landscape phones, 576px and up)*/
    @media (min-width: 576px) and (max-width: 767.98px) {
        body {
            background-image: url('/media/wallworm_2019_1280.jpg');
        }
    }

    /*Small devices (landscape phones, 576px and up)*/
    @media (min-width: 767.99px) and (max-width: 1200px) {
        body {
            background-image: url('/media/wallworm_2019.jpg');
        }
    }
    
}









