header {
    box-shadow: 0 0 12px rgb(0 0 0 / 30%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px;
}

.logo {
    width: var(--logo_width);
}

nav ul {
    display: flex;
    gap: 30px;
    font-weight: 550;
}

nav a {
    color: #fff;
    font-size: 15px;
}

nav a:hover {
    color: #00cc00;
}

.searchBar {
    width: var(--searchbar_width);
    display: flex;
    gap: 5px;
}

#search {
    border-radius: 6px;
    height: var(--button_height);
    flex: 1;
    font-size: 12px;
    text-indent: 10px;
}

#go {
    background-color: var(--search_button_background_color);
    height: var(--button_height);
    font-size: 14px;
    color: #fff;
    padding: 0 10px;
    border-radius: 6px;
}

@media screen and (max-width:769px) {
    .logo {
        margin: 0 auto;
    }

    nav {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 5px;
    }

    header {
        flex-direction: column;
        gap: 15px;
        align-items: start;
    }
}