*{
    margin: 0px;
    font-family: Arial, Helvetica, sans-serif;
    /* background-color: antiquewhite; */
    resize: horizontal;
}
p{
    font-weight: bold;
    color: black;
    text-align: center;
}

table, th, td{
    margin-left: 8px;
    padding: 10px 10px 10px 10px;
    border: 3px solid black;
    border-collapse: collapse;
    text-align: center;
    width: 325px;
}
.NavBarSection{
    background-color: #4d4a45;
    width:100%;
    height:100%;
}
.NavBar{
    display:flex;
    flex-wrap: wrap;
    position: relative;
    margin-top: 0px;
    align-items: center;
}
.NavBar::before{
    content: "";
    width:100%;
    height:100%;
}
.NavBar ul{
    display: flex;
    flex-wrap: wrap; 
    text-decoration: none;
    list-style: none;
    justify-content: left;
}
.NavBar img{
    height:80px;
    width:110px;
    padding-left: 30px;
    padding-right: 600px;
    cursor: pointer;
    /* border: 1px solid black; */
    border-radius: 10px;
}
.NavBar ul li a:hover{
    background-color: #090d16;
}
.NavBar ul li a{
    list-style: none;
    text-decoration: none;
    font-size: 15px;
    text-align: center;
    justify-content: center;
    padding:10px 10px 10px 100px;
    color: rgb(255, 255, 255);
    list-style: unset;
    cursor: pointer;
    font-weight: bold;
    border-radius: 15px;
}