header {
    display: flex;
    align-items: center;
    padding: 12px 20px;
}

.logo {
    margin-right: 20px;
}

.logo a {
    font-family: 'Gulkave-Regular';
    font-weight: 500;
    color: #fff;
    font-size: 42px;
}

menu {
    margin-right: auto;
}

menu ul {
    display: flex;
    column-gap: 10px;
}

menu a {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 10px;
    border-radius: 4px;
    white-space: nowrap;
}

menu a:hover {
    background-color: rgb(40 40 40 / 1);
}

.searchBar {
    width: var(--searchBar);
    display: flex;
}

#search {
    flex: 1;
    height: var(--button);
    background-color: rgb(41 41 41 / 1);
    color: #f2f2f2;
    font-size: 15px;
    padding-left: 12px;
    border-radius: 6px 0 0 6px;
}

#go {
    border-radius: 0 6px 6px 0;
    background: linear-gradient(144deg, #af40ff, #4f46e5);
    height: var(--button);
    padding: 0 8px;
    color: #fff;
}

@media screen and (max-width:769px) {
    header {
        flex-direction: column;
    }

    menu {
        display: none;
    }
}