/* Navigation bar specific style sheet
Inherit styles from main styles.css for font, etc. */
@import "/assets/css/styles.css";

nav {
    display: flex;
    justify-content: space-between;
    align-content: center;
    flex-direction: column;
    align-items: center;
}

.dk_logo {
    padding-top: 10px;
    height: 6em;
    /*max-height: 60px;*/
}

.nav_list {
    display: flex;
    flex-shrink: 1;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
}

.nav_link {
    font-size: 1.25rem;
    padding: 1vw;
}

.social_logo {
    height: 1.5rem;
    padding: .75vw;
}

@media screen and (max-width: 1020px) {
nav {
    display: flex;
    justify-content: space-between;
    align-content: center;
    flex-direction: row;
    align-items: center;
    padding-bottom: 10px;
}

.nav_link {
    font-size: 1em;
    padding: 1.75vw;
}

.social_logo {
    height: 1.25em;
    padding: 2vw;
}

.dk_logo {
    padding-top: 10px;
    height: 4em;
    /*max-height: 60px;*/
}

}
