.navbar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 430px;
    height: 75px;
    background-color: var(--dark-blue);
    position: fixed;
    bottom: 0;
    padding: 15px 8px 8px;
    margin: 0 auto;
    z-index: 9;
}

.icon {
    fill: var(--background); 
    display: block;
    margin-bottom: 4px;/
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #333; 
    font-size: 14px;
}

.nav-label {
    font-size: 12px;
    text-align: center;
    color: var(--background);
}

.nav-item.active .icon {
    fill: var(--nav-bar); 
    transition: fill 0.3s ease;
}

.nav-item.active .nav-label {
    color: var(--nav-bar); 
    transition: color 0.3s ease; 
}

@media screen and (max-width: 430px) {
    .navbar{
        width: 100%;
    }
}
