* {
    margin:0px;
    padding:0px;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    color: red;
}

.row {

}

nav {
    background-color: red;
    color: white;
}

.nav-row {
    width: 100%;
    max-width: 1000px;
    padding: 0 24px;

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
}

.fish-logo {
    height: 48px;
}

.header-sub {
    display: flex;
    flex-direction: row;

}

.header-sub > * {
    font-size: 24px;
    padding: 8px 8px;
}

.header-sub > a:hover {
    background-color: #fff;
}