body {
    
   margin: 0;
    background-color: black;
    
    
}


header {
    
    background-color: #881515;
    width: 100%;
    height: 50px;
    padding-left: 0px;
    position: fixed;
    margin-top: 0px;
    z-index: 1;
    
    
}

.imgcont {
    
    
    height: 30px;
    margin-top: 0 auto;
   padding-top: 0;
    
    
}

.container {
    
    
   width: 80%;
    margin: 0 auto;
    
    
    
}

/************************MAIN NAV-BAR********************************

==============================================================================================================================================*/





.nav-wrapper {
    
    max-width: 1200px;
    margin:0 auto;
    padding: 5px 15px;
    margin-top: 0px;
    display: grid;
    grid-template-columns: 30% auto;
    position: sticky;
    top: 0;
    z-index: 1;
    background-color: inherit;
    
    
    
}

.nav-wrapper ul li {
    
    display: inline;
    list-style-type: none;
    
    
}

.nav-wrapper a{
    
    letter-spacing: .1em;
    text-decoration: none;
    font-weight: bold;
    color:darkgray;
    
}

.nav-wrapper a:hover {
    
    cursor: pointer;
    color: darkred;
    box-shadow: inset 0 5px black; /* line over nav links*/
}




.nav-items li ul li {
    
    display:none;
    position: relative;
   

}

.nav-items li:hover ul li{
    
    
    display: block;
    background-color: white;
    width: 90px;
    margin: 0;
    padding: 20px;
    box-shadow: 5px 10px 10px;
   
}



.logo {
    
    font-weight: bold;
    font-size: 24px;
    padding: 10px;
    color: darkgray;
    
}

.menu-link{
    
    margin-left: 10px;
    text-transform: uppercase;
    padding: 10PX;
    
    
}

.menu-icon {
    
    display: none;
}




/*===========================================================================================================================================*/


/*====================================================================== */


.table-container {
    
    background-color: darkgray;
    width: 1200px;
    margin: auto;
    margin-top: 100px;
    
}
/*
.table {
    
    display: grid;
    grid: 
        "nfceast nfceast nfceast"
        "nfcwest nfcwest nfcwest"
        "nfesouth nfcsouth nfcsouth"
        "nfcnorth nfcnorth nfcnorth";
        
        grid-gap: 10px;
        
    
}
*/

.table, th, td {
    
    width: 100%;
    border: 1px solid black;
    border-collapse: collapse;
    
    
}

th, td {
    
    padding: 10px;
    
}


.footer {
    
    display: grid;
    margin: auto;
    grid-template-columns: 
        minmax(20px 300px)
        minmax(20px 300px)
        minmax(20px 300px)
        minmax(20px 300px);
    justify-content: center;
    grid-template-rows: (1fr,1fr);
    background-color: darkgrey;
    height: 300px;
    width: 100%;
    margin-top: 50px;

}

