* {
    box-sizing: border-box;
    margin: 0;
}

.adjChapterButton {
    display: inline-block;
    width: 10px;
    height: auto;
}

#topPanel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 80px;
    background-color: black;
    text-align: center;
    padding: 10px;
    z-index: 3;
}

#centerPanel {
    position: fixed;
    top: 80px;
    width: 100vw;
    height: calc(100vh - 180px);
}

#page {
    position: relative;
    height: 100%;
    margin: auto;
    background-color: whitesmoke;
    border: 1px solid #978965;
    overflow: auto;
}

#bottomPanel {
    position: fixed;
    top: calc(80px + 80vh);
    width: 100vw;
    height: calc(80px);
    background-color: black;
    text-align: center;
    padding: 10px;
    z-index: 3;
}

#passage {
    position: relative;
    text-align: justify;
    font-size: 14px;
    color: black;
    font-weight: normal;
    font-style: normal;
    font-family: 'Bergamo Std', serif;
    padding: 10px;
    margin: auto;
    z-index: 1;
}

#bibleTitle {
    color: #978965;
    font-weight: bold;
    margin: 0;
}

.appVerse {
    padding: 2px;
}

.appVerseNo {
    cursor: pointer;
    display: inline-block;
    text-align: center;
    width: 24px;
    height: 20px;
    text-decoration: none;
    background-color: #EEEEEE;
    color: #333333;
    border-top: 1px solid #CCCCCC;
    border-right: 1px solid #333333;
    border-bottom: 1px solid #333333;
    border-left: 1px solid #CCCCCC;
}

.appVerseText {
    color: black;
    padding: 4px;
}

.selectedVerse {
    background-color: #fffa65;
}

@media only screen and (min-width: 600px) {

    #page {
        width: 75vw;
    }
}

html {
    background-color: black;
    visibility: visible !important;
    opacity: 1 !important;
}
