@import url(core.css);

.header {
    display: grid;
    grid-template-columns: 1fr 2fr;
    width: 1200px;
    margin: auto;

}

header {
    height: 150px; 
}

.nav-container {
    height: inherit;
    width: 100%;
    background-color: var(--primary);
    position: fixed;
    top: 0;
    display: flex;
    z-index: 10;
}

.nav-list {
    display: flex;
    margin: auto;
    height: auto;
    width: 680px;
    flex-direction: row;
    color: var(--white100);
    justify-content: end;
    align-content: center;
}

.nav-item {
    padding: 6.5px 1rem;
    padding-right: 1px;
}

.nav-link {
    text-transform: capitalize;
    font-size: 24px;
}

.nav-link:hover {
    text-decoration: overline;
}

.logout-form button {

}

.btn-as-link {
    color: var(--text-color);
}

.btn-as-link:hover {
    background-color: transparent;
}

.logo-header {
    color: var(--text-color);
    display: flex;
    flex-direction: row;
    margin-left: 3.92rem;
    width: 13rem;
}

.logo-image {
    color: var(--text-color);
    width: 50px;
}


.logo-title {
    text-transform: none;
    margin: auto 0;
}