header{
    background-color: black;
    color: gray;
    border: 3pt white solid;
    border-radius: 5pt;
    padding: 5pt 10pt;
    margin: 5pt;
    position:relative;
}

body{
    background-color: black;
    color: rgb(255, 255, 255);
}

nav ul {
    display: inline-block;
    margin: auto;
}

li.NavLinkItem {
    display: inline-block;
    border: 1pt rgb(82, 82, 82) solid;
    border-radius: 5pt;
    background-color: rgb(82, 82, 82);
    padding: 5pt;
}

li.NavLinkItem  .NavLinkAnchor{
    text-decoration: none;
    color: white;
}


div#Logout-Button {
    display: block;
    position: absolute;
    width: fit-content;
    top: 2vw;
    right: 3vw;
}

@media all and (max-width: 500px) {
    body {
        font-size: 3vw;
    }

}



#main-content{
    width: 80%;
    margin-inline:auto;
}

ul.full-width-list {
    list-style: none;
    width: 100%;
    padding: 0;
}

ul.full-width-list li {
    border: 2pt solid white;
    border-radius: 5pt;
    margin: 1%;
    height: 50pt;
}

ul.full-width-list li a{
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: white;
}

a .innerAnchor {
    height: 100%;
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
    font-size: x-large;
}

#genericPopWindow {
    position: absolute;
    left: 5%;
    bottom: 10%;
    border: 1pt solid #790000;
    background-color: #790000;

    border-radius: 5pt;
    padding: 2%;
    max-width: 25%;
    white-space: pre;
}