.outsideHeaderWrapper { height: 100%; }
* { box-sizing: border-box; }

.topnav {
    overflow: hidden;
    font-family: inherit;
    background-color: #202020;
    width: 100%;
}

.topnav a {
    float: left;
    font-size: 16px;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

.dropdown {
    float: left;
    overflow: hidden;
}

.dropdown .dropbtn {
    font-size: 16px;
    border: none;
    outline: none;
    color: white;
    padding: 14px 16px;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
}

.topnav a:hover, .dropdown:hover .dropbtn { background-color: grey; }

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    padding: 14px 13px;
    min-width: 195px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    float: none;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: center;
}

.dropdown-content a:hover { background-color: #ddd; }
.dropdown:hover .dropdown-content { display: block; }

body {
    padding-top: 60px;
    color: black;
    margin: 0;
}

.header {
    background-color: #4F2992;
    text-align: center;
    color: white;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    margin-bottom: 20px;
    box-shadow: 0 0px 8px 0 rgba(0, 0, 0, 0.5), 0 6px 20px 0 rgba(0, 0, 0, 0.1);
}

.navBarOutsideWrapper {
    margin-top: 114px;
    text-alight: center;
    position: static;
    left: 0;
    top: 0;
    width: 100%;
    margin-bottom: 20px;
}

.navBar {
    flex: border-box;
    text-align: center;
    background-color: grey;
    position: static;
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
}

.middlePage h2, p { text-align: center; }

.footer {
    background-color: #4F2992;
    color: white;
    text-align: center;
    position: relative;
    padding: 5px;
    width: 100%;
    position: sticky;
    bottom: 0;
    box-shadow: 0 0px 8px 0 rgba(0, 0, 0, 0.5), 0 6px 20px 0 rgba(0, 0, 0, 0.1);
}

ul li {
    list-style: none;
    display: inline-block;
    margin-right: 10px
}

.subFooter {
    background-color: #4E5052;
    position: relative;
    color: white;
}

.column {
    float: left;
    width: 33.33%;
    padding: 20px;
    height: 400px;
    border-style: solid;
}

.subFooter:after {
    content: "";
    display: table;
    clear: both;
}

.subFooterHeader {
    position: relative;
    padding: 5px;
    width: 100%;
    color: white;
    background-color: #4E5052;
    text-align: center;
    border-bottom-style: solid;
    border-bottom-width: 10px;
    border-bottom-color: lightgrey;
}

/* This part deals with dropdown menu stuff for the resource page (colleges of LSU section) */
nav {
    width: 95%;
    background: #ebe6fd;
    margin: 40px auto;
    border-radius: 5px;
}
.accordion {
    width: 100%;
    overflow: hidden;
    background-color: #4F2992;
}

.accordion:after {
    content: '+';
    font-size: 20px;
    float: right;
    margin-left: 5px;
}

.active:after { content: '-'; }

span {
    padding: 15px;
    background: #4F2992;
    color: white;
    font-size: 1.2em;
    font-variant: small-caps;
    cursor: pointer;
    display: block;
    overflow: hidden;
    text-align: center;
    border-radius: 5px;
}

span::after {
    float: right;
    right: 10%;
    content: "+";
}

.slide {
    clear: both;
    width: 100%;
    height: 0px;
    overflow: hidden;
    text-align: center;
    transition: height .4s ease;
}

.slide li { padding: 30px; }

#touch, #touch1, #touch2, #touch3, #touch4, #touch5, #touch6, #touch7, #touch8, #touch9, #touch10,
#touch11, #touch12, #touch13, #touch14 {
    position: absolute;
    opacity: 0;
    height: 0px;
}

#touch:checked + .slide, #touch1:checked + .slide, #touch2:checked + .slide, #touch3:checked + .slide, #touch4:checked + .slide,
#touch4:checked + .slide, #touch5:checked + .slide, #touch6:checked + .slide, #touch7:checked + .slide, #touch8:checked + .slide,
#touch9:checked + .slide, #touch10:checked + .slide, #touch11:checked + .slide, #touch12:checked + .slide, #touch13:checked + .slide,
#touch14:checked + .slide {
    height: 100px;
}
/* Dropdown menu styling for resource page END */

@media (prefers-color-scheme: light) {
    nav {
        background: #ebe6fd;
        box-shadow: 0 0px 8px 0 rgba(0, 0, 0, 0.15), 0 6px 20px 0 rgba(0, 0, 0, 0.1);
    }

    nav:hover { box-shadow: 0 0px 10px 0 rgba(0, 0, 0, 0.3), 0 6px 20px 0 rgba(0, 0, 0, 0.1); }
}

@media (prefers-color-scheme: dark) {
    nav {
        background: #171717;
        box-shadow: 0 0px 8px 0 rgba(0, 0, 0, 0.5), 0 6px 20px 0 rgba(0, 0, 0, 0.1);
    }

    nav:hover { box-shadow: 0 0px 10px 0 rgba(0, 0, 0, 0.9), 0 6px 20px 0 rgba(0, 0, 0, 0.1); }
    html { background: #171717; }
    li a { color: white; }
    nav { background: #171717; }
    .navBar { background-color: #171717; }
    body { color: white; }
}