body > header {
    width: 100vw;
    height: 100px;
    background-color: var(--color-background-topbar);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-content: end;
    align-items: end
}

body > header > * {
    display: flex;
    padding: 8px;
}

.logo-container, .logo-container > img {
    height: 100%;
}

li a {
  display: inline-block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

li:hover * {
    background-color: var(--color-background-nav-hover);
    color: var(--color-text-nav-hover);
    transition: background-color 0.3s, color 0.3s;
}

.logout input {
    height: 100%;
    width: 100%;
}
