header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: solid white 1px;
    padding-left: 20px;
    padding-right: 20px;
}

header > h1 {
    min-width: 30%;
    display: flex;
    justify-content: left;
}

header > nav {
    min-width: 30%;
    display: flex;
    flex-direction: column;
    justify-content:center;
}

#searchBarContainer {
    width: 100%;
    display: flex;
    justify-content: center;
}

#searchBarContainer > input {
    width: 85%;

}
#searchBarContainer > button {
    width: 15%;
}

#navBarContainer {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

#accountManagmentContainer {
    display: flex;
    gap: 5%;
}

header > div {
    min-width: 30%;
    display: flex;
    justify-content: right;
}