body {
    padding: 0;
    margin: 0;
    text-align: center;
    overflow-x: hidden;
}

.container {
    margin: 0 3vw;
} 

.row {
    padding: 0;
}

#loading-img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 20vw;
}

#loading-img.hidden {
    display: none;
}



@media (min-width: 768px) {
    .left-panel {
        /* Things kept breaking
           I just want to be done with this
           Its ugly, but it works
        */
        border-top: 10vh solid #212529;
        margin-top: 10vh;
        margin-bottom: 10vh;
        height: 90vh;
        position: fixed;
    }
    .right-panel {
        margin-left: 35vw;
        width: 58vw;
    }
}

.left-panel {
    margin-top: 10vh;
    background-color: #084a6e;
    padding: 20px;
    border-bottom: 6px solid #083c58;
    text-align: center;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.left-panel * {
    /* Doing it this way because the .left-panel padding wasn't working on the sides for whatever reason */
    margin-left: 15px;
    margin-right: 15px;
}

#load_content_btn:hover {
    background-color: #083c58;
}

.left-panel h1 {
    text-shadow: 0px 4px 2px #212529;
    font-size: 2.2em;
    font-weight: bolder;
    margin-bottom: 3px;
}

.left-panel p.content-warning {
    text-shadow: 0px 2px 2px #212529;
    margin-top: 10px;
    margin-bottom: 0;
}

.left-panel p.content-warning+p {
    font-size: .8em;
}



.right-panel {
    max-width: 60vw;
    overflow: hidden;
    padding-bottom: 100px;
}

#content > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.right-panel h1 {
    text-align: center;
    font-size: 3em;
    padding-top: 10px;
}

.right-panel a {
    color: #dee2e6;
    font-style: italic;
}

.right-panel a:hover {
    color: #9d9fa1;
}

.right-panel h1 a {
    text-decoration: none;
}

.right-panel .infobox {
    min-width: 80%;
    text-align: center !important;
    background-color: #5c3723;
    margin-bottom: 25px;
}

.right-panel .infobox ul {
    text-align: center;
    list-style-type: none;
    width: 100%;
    margin: 0;
    padding: 0;
}

.right-panel .infobox tbody {
    border: 20px solid #00000000;
}

.right-panel .infobox th {
    /* !important to overwrite the in-line styles */
    background-color: rgb(49, 34, 34) !important;
}

.right-panel h2 {
    font-size: 2em;
    text-align: center;
    padding-top: 50px;
}

.right-panel h3 {
    font-size: 1.7em;

}

.right-panel h4 {
    font-size: 1.35em;
    font-style: italic;
    margin-top: 15px;
}



/* Get rid of some of the Wikipedia Info */
#Timeline-row,
.box-More_citations_needed, 
.box-More_footnotes_needed,
span.mw-editsection,
sup,
div:has(> #References),
div:has(> #References) ~ * {
    display: none;
}



footer {
    background-color: #5c3723;
    border-top: 5px solid #6e4a37;
    text-align: center;
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px 15px 20px;
    font-size: 1.2em;
    margin-top: 50px;
}

