.nav-container {
    display: flex;
    flex-direction: row;
    position:fixed;
    top: 0;
    background-color: #212121;
    width: 100%;
    height: 50px;
    z-index: 100;
}

.nav-logo {
    display: flex;
    justify-content: center;
    height: 40px;
    width: 125px;
    font-family: 'impact';
    font-size: 25px;
    letter-spacing: 2px;
    color: #c0c0c0;
    margin-top: 10px;
    margin-left: 10px;
    border-radius: 10px;
}

.nav-logo:hover, .home-btn:hover,
.playlist-btn:hover, .explore-btn:hover {
    background-color: #393939;
}

.home-btn {
    width: var(--music-control-size);
    height: var(--music-control-size);
    background: url(../img/home-btn.png) no-repeat center center;
    background-size: 60%;
    border: none;
    border-radius: 50%;
    margin: 10px 20px;

    cursor: pointer;
}

.playlist-btn {
    width: var(--music-control-size);
    height: var(--music-control-size);
    background: url(../img/playlist-btn.png) no-repeat center center;
    background-size: 60%;
    border: none;
    border-radius: 50%;
    margin: 10px 15px;

    cursor: pointer;
}

.explore-btn {
    width: var(--music-control-size);
    height: var(--music-control-size);
    background: url(../img/explore-btn.png) no-repeat center center;
    background-size: 60%;
    border: none;
    border-radius: 50%;
    margin: 10px 20px;

    cursor: pointer;
}

.search-bar {
    display: flex;
    width: 800px;
    height: 25px;
    padding: 10px 15px;
    border: none;
    border-radius: 20px;
    margin-top: 10px;
}

.home-btn, .explore-btn, .playlist-btn {
    flex-shrink: 0;
}

.nav-left,
.nav-center,
.nav-right {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex: 1 1 100px
}