.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 10px;
    font-family: "Cascadia Code", monospace;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    list-style-type: none;
    margin: 0;
    height: 30px;
    background: rgb(200, 200, 200);
    color: white;
    border-radius: 15px;
    font-size: 18px;
}

.navbar a {
    font-size: 18px;
    font-weight: bold;
    color: #316191;
    text-decoration: none;
}

.nav-item {
    width: 25%;
    position: relative;
    text-align: center;
}

.nav-item .dropbtn {
    font-size: 18px;
    font-weight: bold;
    border: none;
    outline: none;
    color: #316191;
    padding: 14px 16px;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
}

.nav-link:hover,
.nav-item:hover,
.nav-item:hover .dropbtn {
    font-size: 20px;
}

.nav-item-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.nav-item-list a {
    float: none;
    color: black;
    padding: 12px 16px;
    font-weight: normal;
    font-size: 12px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: left;
    text-align: left;
    gap: 6px;
}

.icon {
    display: inline;
    height: 20px;
    width: 20px;
}

.nav-item-list a:hover {
    background-color: #ddd;
}

.nav-item:hover .nav-item-list {
    display: block;
}
