#logo {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
}

#nav-links-ul {
    height: 4rem;
    display: flex;
    flex-direction: row;
    list-style-type: "";
    list-style-position: inside;
    margin: 0px;
}

#nav-links-ul li {
    height: inherit;
}

.dropdown-container,
.dropdown-btn,
.dropdown-title {
    display: flex;
    justify-content: center;
    align-items: center;
}

.dropdown-container {
    width: 100px;
    height: inherit;
    position: relative;
}

.dropdown-container:hover {
    background-image: linear-gradient(to bottom, #f0f0f0, #97b481);
}

.dropdown-btn {
    width: 100px;
    height: inherit;
    background-color: inherit;
    color: black;
}

.dropdown-title {
    font-size: 1.2rem;
    padding: none;
    margin: none;
    pointer-events: none;
}

.dropdown-content {
    display: none;
    position: absolute;
    z-index: 1;
    top: 100%;
    /*left: 0;  this makes the element appear flush with the left side of dropdown-btn*/
    background-color: white;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}

.dropdown-item {
    display: block;;
    color: black;
}

.dropdown-container:hover .dropdown-content {
    display: block;
}