.navBar {
    background-color: black;
    width: 100%;
    display: table;
    clear: both;
}

.navBar a {
    float: left;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 25px;
}

.navBar a.navBar-right {
    float: right;
    border: none;
    outline: none;
    margin: 0;
}

.navBar-dropdown {
    float: right;
    overflow: visible;
    position: relative;
    z-index: 1001;
}

.navBar-dropdown .dropbtn {
    font-size: 25px;
    border: none;
    outline: none;
    color: white;
    padding: 14px 16px;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
}

.navBar-dropdownContent {
    display: none;
    position: absolute;
    background-color: #1e2a33;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1000;
    right: 0;
    top: 53px;
}

.navBar-dropdownContent a {
    float: none;
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
    font-size: 18px;
}

.navBar-dropdownContent a:hover {
    background-color: #2a3d4f;
}

.navBar-dropdown:hover .navBar-dropdownContent {
    display: block;
}

footer {
    width: 100%;
    background-color: black;
    padding: 15px 0;
    color: white;
    box-sizing: border-box;
    text-align: center;
    flex-shrink: 0;
    height: 70px;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.footer-list-item {
    color: white;
    font-size: 20px;
}

.footer-list-item a {
    color: white;
    text-decoration: none;
}